Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created November 14, 2016 15:13
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 zoffixznet/35b76f043fc13676585e7748cd6815f6 to your computer and use it in GitHub Desktop.
Save zoffixznet/35b76f043fc13676585e7748cd6815f6 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
sub MAIN (Str $file) {
for $file.IO.comb {
.print;
sleep /<[.!?]>/ ?? .30
!! /<[,;]>/ ?? .10
!! .05;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment