in reply to Simple Q: Make it prompt for a variable

#!/usr/bin/perl use strict; print "Enter your name: "; my $name = <STDIN>; chomp $name; print "Hello, $name\n";