#!/usr/bin/perl
use strict "vars";
use warnings;
use feature qw(switch);
use locale;
use POSIX qw(locale_h);
setlocale(LC_ALL, "cs_CZ.UTF-8");
use constant (
ERROR_OK => 0,
ERROR_CMD => 1,
ERROR_INPUT => 2,
ERROR_OUTPUT => 3,
ERROR_INPUT_FORMAT => 4
);
exit ERROR_OUTPUT;
我仍然得到錯誤「論證‘ERROR_OUTPUT’不是數字,在出口處......」 我怎樣才能使用的出口值,而不是directy使用號碼不變?的Perl - 退出恆
ERROR_OUTPUT或ERROR_OUTPUTS? – aschepler 2013-02-20 15:00:51
@aschepler:thx,編輯 – Krab 2013-02-20 15:01:35
始終使用'use strict;使用警告;'!!! – ikegami 2013-02-20 22:40:22