Skip to content

Instantly share code, notes, and snippets.

@dwaite
Created March 14, 2011 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dwaite/868832 to your computer and use it in GitHub Desktop.
Save dwaite/868832 to your computer and use it in GitHub Desktop.
rbx-head-hydra :002 > foo = /foo/.match "foo"
=> #<MatchData "foo">
rbx-head-hydra :003 > bar = /bar/.match "bar"
=> #<MatchData "bar">
rbx-head-hydra :004 > $~
=> #<MatchData "bar">
rbx-head-hydra :005 > $~ = foo
=> #<MatchData "foo">
rbx-head-hydra :006 > $~
=> #<MatchData "bar">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment