fork(1) download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. var list = new List<string>() { "a", "b", "c" };
  10. list.ForEach((item) => Console.WriteLine(item));
  11. }
  12. }
Success #stdin #stdout 0.02s 34816KB
stdin
stdout
a
b
c