fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. private enum color{
  6. red
  7. }
  8. public static void Main()
  9. {
  10. color z = color.red;
  11. Console.WriteLine(z);
  12. }
  13. }
Success #stdin #stdout 0.01s 131520KB
stdin
Standard input is empty
stdout
red