fork download
  1. a = 1;
  2.  
  3. function inc(int, incValue)
  4. if incValue == nil then incValue = 1 end;
  5. local int = int + incValue;
  6. return int;
  7. end
  8.  
  9. print(inc(a))
  10. print(inc(a,15))
Success #stdin #stdout 0s 2832KB
stdin
Standard input is empty
stdout
2
16