Skip to content

Instantly share code, notes, and snippets.

@dmaestro
Last active August 18, 2018 19:55
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 dmaestro/42ffe787d290f479c0161abf3e47f6d8 to your computer and use it in GitHub Desktop.
Save dmaestro/42ffe787d290f479c0161abf3e47f6d8 to your computer and use it in GitHub Desktop.
Programming-Idioms - String Length - Perl
use strict;
use warnings;
use 5.010;
binmode STDOUT, ":utf8"; # print utf-8 to the terminal
use utf8; # program text is utf-8 encoded
my $s = "été";
my $n = length $s;
say "$s => $n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment