2017-02-03から1日間の記事一覧

return; と return undef; の違い

use strict; use warnings; use Smart::Comments; my %n = (val=>return_nothing()); my %u = (val=>return_undef()); ### %n ### %u sub return_nothing{ return; } sub return_undef{ return undef; } $ perl a.pl Odd number of elements in hash assignm…