-
-
Save jkramer/2fa0e1d3fccd527780c77a773c692a46 to your computer and use it in GitHub Desktop.
Ö
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
#!/usr/bin/env perl6 | |
$*IN.slurp.&talk; | |
sub talk(Str $_) { | |
my @ös = |('Ö','ö') xx *; | |
for .lines { | |
for .comb.produce(&[~]) { | |
print "\r", @ös.shift, ' ', $_; | |
sleep ((1..4) X/ 10).pick; | |
} | |
print "\r \n"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment