Skip to content

Instantly share code, notes, and snippets.

@Skarsnik
Created November 4, 2021 22:29
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 Skarsnik/2b9a18ea991a1c2d2015a373bd827c23 to your computer and use it in GitHub Desktop.
Save Skarsnik/2b9a18ea991a1c2d2015a373bd827c23 to your computer and use it in GitHub Desktop.
use v6;
module Piko {
sub foo is export {
say "Piko::foo";
my $run-time;
INIT $run-time = True;
die "Compile time" unless $run-time;
say $run-time;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment