Perl 换行打印

#!/usr/bin/perl
$, = " ";
$ = " ";

for($i=0;$i<3;$i++){
 print("i: ".$i);
}

原文地址:https://www.cnblogs.com/dogharry/p/4704910.html