Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created January 6, 2016 13:26
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 zoffixznet/47f908a2cc42681472df to your computer and use it in GitHub Desktop.
Save zoffixznet/47f908a2cc42681472df to your computer and use it in GitHub Desktop.
$ cat Foo.pm6
my $x = rand;
class Foo {
method bar { say $x }
}
$ perl6 -I. -e 'loop { GLOBAL::<Foo>:delete; EVALFILE "Foo.pm6"; say ::("Foo").new.bar; sleep 2}'
0.954057871973301
True
0.405517243703234
True
^C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment