fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. if (42 == null)
  8. Console.WriteLine("something is wrong in this universe ;-)");
  9. else
  10. Console.WriteLine("ok: 42 and null are different.");
  11. }
  12. }
  13.  
Success #stdin #stdout 0s 131072KB
stdin
Standard input is empty
stdout
ok: 42 and null are different.