fork download
  1. import times
  2. import os
  3.  
  4. proc sprint(message: string)=
  5. for character in message:
  6. sleep(1000)
  7. stdout.write character
  8. stdout.write "\n"
  9.  
  10. sprint "hello"
Success #stdin #stdout 0s 4984KB
stdin
Standard input is empty
stdout
hello