Skip to content

Instantly share code, notes, and snippets.

@lizmat
Created August 26, 2016 09:13
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 lizmat/1b3c946ae9109e1dfc40ee025abb019f to your computer and use it in GitHub Desktop.
Save lizmat/1b3c946ae9109e1dfc40ee025abb019f to your computer and use it in GitHub Desktop.
Where does a lexical live in the REPL?
$ perl6
You may want to `panda install Readline` or `panda install Linenoise` or use rlwrap for a line editor
To exit type 'exit' or '^D'
> my $a = 42; say $a.WHERE; say MY::<$a>.WHERE
4541118992
4541118992
> say $a.WHERE; say MY::<$a>.WHERE
4541118992
140253002482848
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment