ncc/tests/example_project/scripts/unit.pl

6 lines
128 B
Perl
Raw Normal View History

2022-12-07 21:17:25 -05:00
use warnings;
print("Hello, World!\n");
print("What is your name? ");
my $name = <STDIN>;
chomp($name);
print("Hello, $name\n");