Created
February 9, 2018 18:08
-
-
Save pfcoperez/818956cf21f3aeb6659a9752a88e6d88 to your computer and use it in GitHub Desktop.
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 C(val x: Int, lazyNext: => C) { lazy val next = lazyNext } | |
lazy val head: C = new C(1, tail) | |
val tail: C = new C(2, head) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment