Skip to content

Instantly share code, notes, and snippets.

@mariusae
Created June 13, 2012 22:18
Show Gist options
  • Select an option

  • Save mariusae/2926830 to your computer and use it in GitHub Desktop.

Select an option

Save mariusae/2926830 to your computer and use it in GitHub Desktop.
Current status.
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