-
Notifications
You must be signed in to change notification settings - Fork 0
Syntax
cl4cnam edited this page Nov 17, 2023
·
5 revisions
FuncSug syntax is similar to that of Python, with a few differences:
- You have to declare all variables:
var myVariable
- To do an assignment:
myVariable := myValue
- Test of equality is made with a single
=
:if myFirstValue = mySecondValue
- Booleans are
true
andfalse
- All indentations are made of one tab per indent
- All block can be labeled with
@myLabel
while true: @myLabel ...
- New syntax for parallel branch:
parallel || ... || ...
FuncSug Documentation