fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // Example from: http://msdn.microsoft.com/en-us/library/yz2be5wk.aspx
  8. Console.WriteLine (String.Concat("Answer", 42, false ));
  9. Console.WriteLine (String.Concat("Answer", 42, true ));
  10.  
  11. Console.WriteLine (true.ToString());
  12. }
  13. }
Success #stdin #stdout 0.03s 34776KB
stdin
Standard input is empty
stdout
Answer42False
Answer42True
True