#!/usr/bin/env perl
use strict;
use warnings;
use Indent::Utils qw(remove_last_ws);
my $input = 'a ';
remove_last_ws(\$input);
print "$input|\n";
# Output:
# a|
#!/usr/bin/env perl
use strict;
use warnings;
use Indent::Utils qw(remove_last_ws);
my $input = 'a ';
remove_last_ws(\$input);
print "$input|\n";
# Output:
# a|