Chapter :
Keecode / Core Concepts
Progress :
25%

Variables

Read != Assign

To read a variable, use the $ sign.
To assign a variable, do not use it.

(like you would in Bash)

Temporary Variables

To declare a tmp variable, prefix your variable name with 2 underscores __.
A temporary variable is hidden from the result.

List

Declare your List in one line.

Dictionnary

A Dict in Keecode is like an Object in PHP/JS. It'a set of keys/values.

To declare a Dict, indentation is important.