Skip to content

Instantly share code, notes, and snippets.

@videah
Created October 23, 2015 22:06
Show Gist options
  • Save videah/11b4345cb1cdf24aca86 to your computer and use it in GitHub Desktop.
Save videah/11b4345cb1cdf24aca86 to your computer and use it in GitHub Desktop.
LuaJIT supports Unicode characters as variable names. This allows you to do horrific things like this
-- Prints 'helloworld'​
= 'h'
​​ = 'e'
​​​ = 'l'
​​​​ = ​​​
​​​​​ = 'o'
​​​​​​ = 'w'
​​​​​​​ = ​​​​​
​​​​​​​​ = 'r'
​​​​​​​​​ = ​​​
​​​​​​​​​​ = 'd'
print(​..​​..​​​..​​​​..​​​​​..​​​​​​..​​​​​​​..​​​​​​​​..​​​​​​​​​..​​​​​​​​​​)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment