Skip to content

Instantly share code, notes, and snippets.

@exerro
Created June 12, 2016 17:24
Show Gist options
  • Save exerro/248216a5fbb95c83e2d12bd19bf5a754 to your computer and use it in GitHub Desktop.
Save exerro/248216a5fbb95c83e2d12bd19bf5a754 to your computer and use it in GitHub Desktop.
Source
int x = math::random()
if x > 5
print( x < 3 )
else
print( x > 7 )
After some magic
int x = math::random()
if x > 5
print( false )
else
print( false )
After a bit more magic
int x = math::random()
print( false )
And finally
print( false )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment