fork download
  1. print("foo" || 42);
  2. print(null || 42);
  3. print(0 || 42);
  4. print(100500 || 42);
Success #stdin #stdout 0.02s 4940KB
stdin
Standard input is empty
stdout
foo
42
42
100500