#!/usr/local/bin/perl print "Hello, what is your name?\n"; #This tells the program to WAIT until it gets some input $name = ; #this takes off the new line character chomp($name); print "hi $name, how are you?\n";