RosettaCodeData/Task/Naming-conventions/Nim/naming-conventions-1.nim
2023-07-01 13:44:08 -04:00

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