Skip to content

Instantly share code, notes, and snippets.

@bigpresh
Created January 12, 2011 12:24
Show Gist options
  • Save bigpresh/776094 to your computer and use it in GitHub Desktop.
Save bigpresh/776094 to your computer and use it in GitHub Desktop.
DB<1> $foo = 'Foo';
DB<2> x ref $foo;
0 ''
DB<3> $foo->{bar} = 'Bar';
DB<4> x ref $foo;
0 ''
DB<5> x $foo;
0 'Foo'
DB<6> x $foo->{bar};
0 'Bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment