C:\test>perl play.pl perl> print 'hello world!' hello world! perl> $x = 100 perl> $y = 10 perl> print $x/$y 10 perl> print $_, "\n" for 1 .. 10 1 2 3 4 5 6 7 8 9 10 perl>