Re: Procedure main
- Posted by jmduro Aug 19, 2022
- 809 views
Not only Python: C and many other languages do so. It is a clean way to identify where the program starts for beginners.
I like to start some of my programs this way:
procedure main(sequence cmd) end procedure main(command_line()) -- maybe_any_key() //for windows console programs
Jean-Marc