fork download
  1. using System;
  2. using System.IO;
  3. using System.Collections.Generic;
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. var x = new List<string>() { "Ammicable", "Alloy", "Polymer" };
  10. Console.WriteLine(String.Join(Environment.NewLine, x.ToArray()));
  11. }
  12. }
Success #stdin #stdout 0.02s 33784KB
stdin
Standard input is empty
stdout
Ammicable
Alloy
Polymer