Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created January 25, 2017 15:44
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/4ea1ae8c8087c3620fbc21e78526d41b to your computer and use it in GitHub Desktop.
Save zoffixznet/4ea1ae8c8087c3620fbc21e78526d41b to your computer and use it in GitHub Desktop.
$ perl6 -e 'my $Foo = EVALFILE "Foo.pm6"; $Foo.foo; sleep 10; $Foo = EVALFILE "Foo.pm6"; $Foo.foo'
hi
bye
$ cat Foo.pm6
my class Foo {
method foo { say "bye" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment