fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var list = new List<string> { "Z", "~" };
  9. list.Sort();
  10. foreach(var s in list) Console.WriteLine(s);
  11. }
  12. }
Success #stdin #stdout 0.05s 34080KB
stdin
Standard input is empty
stdout
~
Z