This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 3.0: (no announcement message available)
[perl5.git] / t / op.sprintf
CommitLineData
8d063cd8
LW
1#!./perl
2
a687059c 3# $Header: op.sprintf,v 3.0 89/10/18 15:31:28 lwall Locked $
8d063cd8
LW
4
5print "1..1\n";
6
a687059c
LW
7$x = sprintf("%3s %-4s%%foo %5d%c%3.1f","hi",123,456,65,3.0999);
8if ($x eq ' hi 123 %foo 456A3.1') {print "ok 1\n";} else {print "not ok 1 '$x'\n";}