# No.13 Perl Sample (code key - 70) # Hello World! 2 (初めてのPerlスクリプト) # Tomonori Nagano # Last Update: January 18, 2008 # # This file is encoded in Unicode (UTF-8). If you see gibberish characters, # please re-encode the file in utf-8. # my $name = "Tomonori Nagano" ; # define a global variable print "hello world!\n" ; # print "hello world!" print "hello $name!\n" ; # print "hello Tomonori Nagano!"