Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. zoffix@ZofMain:/tmp$ time perl -MMojo::DOM -wlE 'say Mojo::DOM->new("<foo><bar>baz</bar></foo>")->at("bar")->all_text'
  2. baz
  3.  
  4. real 0m0.041s
  5. user 0m0.032s
  6. sys 0m0.008s
  7. zoffix@ZofMain:/tmp$ time perl6 -MInline::Perl5 -e 'use Mojo::DOM:from<Perl5>; say Mojo::DOM.new("<foo><bar>baz</bar></foo>").at("bar").all_text'
  8. baz
  9.  
  10. real 0m3.935s
  11. user 0m3.856s
  12. sys 0m0.068s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement