fork download
  1. using System;
  2. public class Program
  3. {
  4. public static void Main()
  5. {
  6. // Prints a message to the console.
  7. Console.WriteLine("Hello, World!");
  8. Console.WriteLine("Hello, vipin");
  9. // Waits for the user to press a key. This prevents the application
  10. // from immediate termination.
  11. Console.ReadLine();
  12. }
  13. }
Success #stdin #stdout 0.02s 27896KB
stdin
Standard input is empty
stdout
Hello, World!
Hello, vipin