fork download
  1. var x = 10
  2.  
  3. switch(x) {
  4. case 1:
  5. print("One")
  6. case 2:
  7. print("Two")
  8. default:
  9. print("Other")
  10. }
  11.  
Success #stdin #stdout 3.51s 170088KB
stdin
Standard input is empty
stdout
Other