Guest User

Untitled

a guest
Jun 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. proto wow($x) {
  2. say("in proto");
  3. return { say("in closure"); {*} }
  4. }
  5. multi wow($x) { say($x) }
  6. my $c := wow("in multi");
  7. say("back from proto");
  8. $c();
Add Comment
Please, Sign In to add comment