Capitalized type names

This commit is contained in:
2026-04-24 12:46:27 +10:00
parent 4aec343b6c
commit 21819b2d62
10 changed files with 71 additions and 40 deletions
+3 -3
View File
@@ -113,8 +113,8 @@ print !false; //true
//types
{
var a: int;
var b: int = 42;
var a: Int;
var b: Int = 42;
a = 69;
b = 8891;
@@ -125,7 +125,7 @@ print !false; //true
//constants
{
var c: int const = 42;
var c: Int const = 42;
print c;
}