Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #!/usr/bin/env perl
  2. use strict;
  3. use warnings;
  4. use Unicode::GCString;
  5.  
  6. my $gcs = Unicode::GCString->new("hello world");
  7. print $gcs->columns();
  8.  
  9. exit(0);
  10.  
  11. perl mwe.pl
  12.  
  13. 11
  14.  
  15. pp -o mwe.exe mwe.pl
  16.  
  17. mwe.exe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement