Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
my $cmte_money_total = 0; while ($cmte_money_total == 0){ # body of function }
这种语法有什么问题吗?它一直给我一个错误。
不。
$ perl -c -e' my $cmte_money_total = 0; while ($cmte_money_total == 0){ # body of function } ' -e syntax OK
它没有任何问题。
问题出在其他地方。发布产生问题的完整最小代码。