fork(1) download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Diagnostics;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Net;
  9. using System.Reflection;
  10. using System.Text.RegularExpressions;
  11. using System.Text;
  12. using System.Threading;
  13.  
  14. namespace YahooChieBukuro
  15. {
  16. public static class EntryPoint
  17. {
  18. [STAThread]
  19. public static int Main()
  20. {
  21. char[] chars = "abcdefg".ToCharArray();
  22.  
  23. foreach (var c in chars)
  24. {
  25. Console.WriteLine(c);
  26. }
  27. return 0;
  28. }
  29. }
  30. }
Success #stdin #stdout 0.02s 33808KB
stdin
Standard input is empty
stdout
a
b
c
d
e
f
g