fork(132) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine("He said to me , \"Hello World\".How are you ?");
  8. Console.WriteLine(@"He said to me , ""Hello World"".How are you ?");
  9. }
  10. }
Success #stdin #stdout 0.02s 33856KB
stdin
Standard input is empty
stdout
He said to me , "Hello World".How are you ?
He said to me , "Hello World".How are you ?