9 lines
250 B
Nim
9 lines
250 B
Nim
# Constants can start with either a lower case or upper case letter.
|
|
const aConstant = 42
|
|
const FooBar = 4.2
|
|
|
|
var aVariable = "Meep" # Variables must start with a lowercase letter.
|
|
|
|
# Types must start with an uppercase letter.
|
|
type
|
|
FooBar = object
|