Go to the
first
,
previous
,
next
,
last
section,
table of contents
.
C に洗脳されたプログラマが特に注意すべき点
if
や
while
を使う時には
{ }
が必要である。
`else if'
の代わりに
`elsif'
を使う。
break
、
continue
はそれぞれ
last
、
next
となる。
switch
文はない。
perl では変数は
$
か
@
で始まる。
printf は
*
をインプリメントしていない。
コメントは
#
で始まる。
/*
ではない。
どんなものであれ、そのアドレスを得ることはできない。
ARGV
は大文字でなければならない。
link
、
unlink
、
rename
などの"システム"コールは 成功すれば非 0 を返す。0 ではない。
シグナルハンドラはシグナルの名前を用いて扱う。番号ではない。
Go to the
first
,
previous
,
next
,
last
section,
table of contents
.