#!/usr/bin/perl print "Press C to continue\n"; $getc = ; while ($getc ne 'c') {print "getc is $getc"; $getc = ;} print "It worked, finally";