Created
May 19, 2017 20:55
-
-
Save rowanmiller/abb24afeb5cd617b7a337ca05b374ecf to your computer and use it in GitHub Desktop.
Temp_SampleCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var names = new List<String> | |
{ | |
"Ana", | |
"Felipe", | |
"Emillia" | |
}; | |
names.ForEach(name => | |
Console.WriteLine($"Hello {name}")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment