#!/usr/bin/perl use strict; use warnings; print "what is your name\n"; my $name = ; print "hello $name"; print "select letter\n"; my $select = ; if ($select == 'a') { print "good choice\n"; } else { print "bad choice\n"; }