Skip to content

Instantly share code, notes, and snippets.

@AlexDaniel
Created August 5, 2017 20:16
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/5763d0bcb261f11733bd15893b7e2a85 to your computer and use it in GitHub Desktop.
Save AlexDaniel/5763d0bcb261f11733bd15893b7e2a85 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
use lib ‘.’;
use Misc;
use Whateverable;
unit class Leakable does Whateverable;
method help($) {}
method leak {
loop {
say self.get-similar: ‘hello’, <HEAD v6.c releases all>;
prompt;
}
}
Leakable.new.leak
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment