Skip to content

Instantly share code, notes, and snippets.

@ytnobody
Created April 10, 2013 09:05
Show Gist options
  • Save ytnobody/5353063 to your computer and use it in GitHub Desktop.
Save ytnobody/5353063 to your computer and use it in GitHub Desktop.
loadstring + if
#!/usr/bin/env lua
i = 20
f = loadstring("if (i == 20) then return true else return nil end")
if ( f() ) then
print "ok"
else
print "ng"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment