programming-examples/perl/String/Printing a space before signed values not preceded by + or -.pl

8 lines
86 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!usr/bin/perl
use warnings;
use strict;
printf "% d\n% d\n", 547, -547;