Skip to content

For loops, user input, functions call

Compare
Choose a tag to compare
@flodavid flodavid released this 30 Nov 22:50
· 42 commits to master since this release
81d63d4

We can use for loops.
Get user input with different types:
input in x
Function declaration and call:

procedure hello_world(integer times)
...
end
...
main
hello_world 3
hello_world(4)
...
end