- Просмотров: 1412
- Комментариев: 0
- Подписаться на обновления
- Печатать
- Поделиться
Making & Calling Function
If the same code need to be repeated multiple times, or if the code needs to be distinguished according to its role, you can make the code as a function, and can all the function whenever necessary. This is similar to the concept of a function in C language. The only difference is that there are no return values and input parameters. When used properly, you can easily figure out the flows of the program, and can avoid to write the same command lines again and again. Functions are executed by calling them. After a called function ends, execution will be returned to the point of the calling and started from the next command line.
Usage
- The following rules apply when making a function:
-
- There cannot be duplicate function names.
- A function must exist outside another function or program body.
- Spaces and special characters(!, @, #, $ etc.) are not allowed in function names.
- Function names cannot start with numbers.
- While inputting function names, press Esc to cancel.
- Otherwise, press Enter to save.
- While selecting the function to call, press ESC to cancel.
- Otherwise, click the appropriate function or press Enter while the function is highlighted to save.
- A function cannot call itself.
Example
-
The program will continuously call the functions to move forward, backward, right and left.