Etienne Pouvreau @smolware.dev · Mar 26

Control flow and loop primitives: - if - elif - else - end - while and for loops (numeric bounded loop) - match case (pattern matching) - ternary expression

0 likes 1 replies

?

Replies

Etienne Pouvreau · Mar 26

Nemo functions are statically typed. Inside functions that don't return anything (void functions), the 'exit' keyword must be used to stop the execution early. Using exit is not allowed in typed functions. 'return' must always be followed by an expression. Nemo has closures.