fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace HelloWorld
  6. {
  7. class HelloWorld
  8. {
  9. static void Main(string[] args)
  10. {
  11. Console.Out.WriteLine("Hello Kieran");
  12. Console.Out.WriteLine("I am 15 years old");
  13. Console.Out.WriteLine("4 people in my family");
  14. Console.In.ReadLine();
  15. }
  16. }
  17. }
Success #stdin #stdout 0.04s 37968KB
stdin
Standard input is empty
stdout
Hello Kieran
I am 15 years old
4 people in my family