Created
June 13, 2012 22:18
-
-
Save mariusae/2926830 to your computer and use it in GitHub Desktop.
Current status.
This file contains hidden or 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
| class Deepstack { | |
| def apply() = a() | |
| def a() = b() | |
| def b() = c() | |
| def c() = d() | |
| def d() = e() | |
| def e() = f() | |
| def f() = g() | |
| def g() = h() | |
| def h() = j() | |
| def j() = k() | |
| def k() = l() | |
| def l() = m() | |
| def m() = n() | |
| def n() = o() | |
| def o() = p() | |
| def p() = q() | |
| def q() = r() | |
| def r() = s() | |
| def s() = t() | |
| def t() = u() | |
| def u() = v() | |
| def v() = w() | |
| def w() = x() | |
| def x() = y() | |
| def y() = z() | |
| def z() { | |
| while (true) | |
| Thread.sleep(10<<20) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment