fork download
  1. function foo(value)
  2. return true and value or 42
  3. end
  4.  
  5. print(foo(false))
Success #stdin #stdout 0s 4492KB
stdin
Standard input is empty
stdout
42