Skip to content

Instantly share code, notes, and snippets.

@themightychris
Forked from TryJSIL/Goto.cs
Created September 23, 2012 19:00
Show Gist options
  • Save themightychris/3772682 to your computer and use it in GitHub Desktop.
Save themightychris/3772682 to your computer and use it in GitHub Desktop.
Goto
using System;
public static class Program {
public static void Main (string[] args) {
int i = 0;
a:
i += 1;
Console.WriteLine("a");
for (; i < 16; i++) {
if (i == 8)
goto a;
else
goto c;
c:
Console.WriteLine("c");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment