Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@AlexDaniel

AlexDaniel/LAST Secret

Forked from synthmeat/LAST
Last active April 14, 2020 14:56
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 AlexDaniel/4339ab1bf940bd4f81faca61b1c71bce to your computer and use it in GitHub Desktop.
Save AlexDaniel/4339ab1bf940bd4f81faca61b1c71bce to your computer and use it in GitHub Desktop.
sub MAIN () {
my $x = 0;
loop {
state $n = 0;
put $n++;
last if $n > 2;
last if $x++ > 10;
LAST { put $n }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment