Search notes:

Perl function: printf

#!/usr/bin/perl
use warnings;
use strict;

printf "
  x: %5.2f - %5.2f
  y: %5.2f - %5.2f
",  3.1  , 16.273,
   -4.246, 14.514;
Github repository about-perl, path: /functions/printf.pl

See also

printf in different languages.
Perl functions

Index