fork download
  1. void main() {
  2. hello(); // OK
  3. }
  4.  
  5. void hello() {
  6. print('Hello World!');
  7. }
Success #stdin #stdout 0.85s 117216KB
stdin
Standard input is empty
stdout
Hello World!