0

我正在尝试使用 perl 的 write 函数来格式化写入文件中的输出。但我无法这样做,因为它给了我错误:第 3 行不推荐使用无逗号变量列表。

format STDOUT=
@<<<<<<<<<<<<<<<<<@<<<<<<<<<<<<<<<
  $text            $text1
.
$text="hello";
$text1="world!";
write;
4

1 回答 1

1

只需将其替换为

format STDOUT=
@<<<<<<<<<<<<<<<<<@<<<<<<<<<<<<<<<
  ($text, $text1)
.
$text="hello";
$text1="world!";
write;
于 2013-09-01T05:52:06.353 回答