public static int main (string[] args) { List list = new List (); list.append ("1. entry"); list.append ("2. entry"); list.append ("3. entry"); // Output: // ``1. entry`` // ``2. entry`` // ``3. entry`` list.foreach ((entry) => { stdout.puts (entry); stdout.putc ('\n'); }); return 0; }