Last active
November 10, 2017 12:06
-
-
Save hugoabonizio/82bb6ca249f15de03a21ce8d9deeb924 to your computer and use it in GitHub Desktop.
This program breaks Crystal compiler
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
a = {1, 0} | |
b = {a, a} | |
c = {b, b} | |
d = {c, c} | |
e = {d, d} | |
f = {e, e} | |
g = {f, f} | |
h = {g, g} | |
i = {h, h} | |
j = {i, i} | |
k = {j, j} | |
l = {k, k} | |
m = {l, l} | |
n = {m, m} | |
o = {n, n} | |
p = {o, o} | |
q = {p, p} | |
puts q |
@veelenga this wasn't intentional, I fixed it now! Thanks!
@JonnyCodewalker thank you for the explanation 😃
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a cool bug