Advertisement
Xliff

( ಠ益ಠ)

Apr 7th, 2016
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #/usr/bin/perl6
  2.  
  3. use Mojo::DOM:from<Perl5>;
  4.  
  5. for dir(test => /:i '.' html $/) -> $file {
  6. my $fh = $file.open();
  7.  
  8. my $contents = $fh.slurp_rest();
  9. say $contents;
  10. last;
  11. }
  12.  
  13. # Outputs
  14. ===SORRY!=== Error while compiling /home/cbwood/eBook/Fortune/OEBPS/Text/reBase.pl
  15. Missing block
  16. at /home/cbwood/eBook/Fortune/OEBPS/Text/reBase.pl:11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement