This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v6.*; | |
{ | |
multi sub hyperize(&code, '«') { | |
sub (@little, @large) { | |
((@little xx *).flat Z @large).flat.map(&code) | |
} | |
} | |
my &hyper-assume = hyperize({&^a.assuming($^b)}, '«'); | |
sub sc($_) { | |
.words».&{ hyper-assume((&lc, &uc), .comb)».().join } | |
} | |
for ^10 { | |
say sc "sarcasmcase FOR YOU"; | |
} | |
say now - ENTER now; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment