Skip to content

Instantly share code, notes, and snippets.

@eduuh
Created February 8, 2022 16:05
Show Gist options
  • Save eduuh/81a0faef14e2f0974269810e8653d182 to your computer and use it in GitHub Desktop.
Save eduuh/81a0faef14e2f0974269810e8653d182 to your computer and use it in GitHub Desktop.
var names = new[]
{
"Ana",
"Felipe",
"Emillia"
};
foreach (var name in names)
{
Console.WriteLine($"Hello {name}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment