Skip to content

Instantly share code, notes, and snippets.

@jskeet
Created October 3, 2023 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jskeet/24789bf488877f62dfe4031787d1343e to your computer and use it in GitHub Desktop.
Save jskeet/24789bf488877f62dfe4031787d1343e to your computer and use it in GitHub Desktop.
for (int i = 0; i < 10; i++)
{
if (i % 2 != 0)
{
Console.WriteLine(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment