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