Created
May 3, 2013 15:22
-
-
Save nk0t/5509810 to your computer and use it in GitHub Desktop.
つらい
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
#!/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