Skip to content

Instantly share code, notes, and snippets.

@cygx
Created August 8, 2019 07:28
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 cygx/9b2b8add4b8ce4beb596def597b68999 to your computer and use it in GitHub Desktop.
Save cygx/9b2b8add4b8ce4beb596def597b68999 to your computer and use it in GitHub Desktop.
$ cat Foo.pm
sub foo is export {
say 42;
}
$ perl6 --target=mbc --output=Foo.moarvm Foo.pm
$ perl6 -I. -MFoo -e foo
42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment