fork download
  1. function main
  2. hello # OK
  3. end
  4.  
  5. function hello
  6. disp "Hello World!"
  7. end
  8.  
  9. main
Success #stdin #stdout 0.06s 44992KB
stdin
Standard input is empty
stdout
Hello World!