fork(1) download
  1. var n = 5;
  2.  
  3. function square (n) {
  4. return n * n;
  5. }
  6.  
  7. print(square(3));
  8. print(n);
  9.  
Success #stdin #stdout 0.01s 4940KB
stdin
Standard input is empty
stdout
9
5