Capitalization

This commit is contained in:
2022-09-15 03:43:35 +10:00
committed by GitHub
parent 8a2720554b
commit 6e8fbe90ea

View File

@@ -75,7 +75,7 @@ var t: type = astype [int]; //t is a type, representing an array of integers
var u: type = [int]; //Error! it tried to assign an array with the sole entry "int"
```
## First-Class citizens
## First-Class Citizens
Types are first-class citizens. What this means is that they can be used just like any other value, as well as being stored in variables, and even returned from functions.