Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created November 14, 2016 15:12
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/f7f556ccb4e1a1a3de5ccc5d70e961ae to your computer and use it in GitHub Desktop.
Save zoffixznet/f7f556ccb4e1a1a3de5ccc5d70e961ae 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