fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var x = "a";
  8. var y = "";
  9. switch(x) {
  10. case "a":
  11. y = "a";
  12. break;
  13. case "b":
  14. y = "b";
  15. break;
  16. }
  17.  
  18. Console.Write(y);
  19. }
  20. }
Success #stdin #stdout 0.02s 33936KB
stdin
Standard input is empty
stdout
a