Case sensitivity

Jigot is case sensitive. It is common to use the camel notation, where a function or a variable is written without any spaces or punctuation. It indicates the separation of words using a single capitailized letter.

Example :

num int = 42;

num print; #42
Num print; #Error

Last updated