5部 関数リファレンス

scalar

scalar EXPR



引数を強制的にスカラコンテキストで解釈して、その値を返します。

scalarの使い方

@list = ("a", "b", "c", "d", "e");
print scalar @list;
> 5 

関連記事