Skip to content

Instantly share code, notes, and snippets.

@EragonJ
Created January 29, 2010 07:00
Show Gist options
  • Save EragonJ/289511 to your computer and use it in GitHub Desktop.
Save EragonJ/289511 to your computer and use it in GitHub Desktop.
x = 10
=> 10
defined? x
=> "local-variable"
$x = 10
=> 10
defined? $x
=> "global-variable"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment