Skip to content

Instantly share code, notes, and snippets.

@nk0t
Created May 3, 2013 15:22
Show Gist options
  • Save nk0t/5509810 to your computer and use it in GitHub Desktop.
Save nk0t/5509810 to your computer and use it in GitHub Desktop.
つらい
#!/usr/bin/csharp
Action 甲 = () => Console.WriteLine("つらい");
Action 乙 = () => Console.WriteLine("しにたい");
for (int i = 0; i < 1000; i++)
{
甲();
乙();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment