in reply to Multi-Line Input
#!/usr/bin/perl use strict; use warnings; print "Enter your guess: "; my @input = <STDIN>; print "@input\n"; [download]