2008-10-10から1日間の記事一覧

Use of uninitialized value in concatenation (.) or string atというエラー

1 #!/usr/bin/perl 2 3 use warnings; 4 use strict; 5 6 my $hello; 7 print "$hello\n"; このプログラムを実行すると、以下のようなエラーメッセージが出力されます。 Use of uninitialized value in concatenation (.) or string at ./hello.pl line 7. …