fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7.  
  8.  
  9. State[,] arr = new State[,] { { State.Wrong } };
  10. Console.WriteLine(arr[0, 0] == State.Wrong);
  11. }
  12.  
  13. enum State : sbyte { Wrong = -1 }
  14. }
Success #stdin #stdout 0.05s 23920KB
stdin
Standard input is empty
stdout
True