For loops, user input, functions call
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
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