Procedure main
- Posted by irv Aug 19, 2022
- 741 views
Dropped by https://github.com/OpenEuphoria/euphoria.
Example programs seem to be written by someone who doesn't use Euphoria. Every example encapsulates the main body of the program as a procedure, and then calls it. Trying to make Euphoria look like Python?
include std/io.e procedure main() puts( STDOUT, "Hello, world!\n" ) end procedure main()