fork download
  1. int main() {
  2. hello(); // OK
  3. return 0;
  4. }
  5.  
  6. void hello() {
  7. write("Hello World!\n");
  8. }
Success #stdin #stdout 0.03s 6664KB
stdin
Standard input is empty
stdout
Hello World!