Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Perl/Basics/User Input/STDIN"
From NetSec
AlizaLorenzo (Talk | contribs) (Created page with "Reading from standard input in perl is very simple. {{code|text=<source lang="perl"> print "Enter your name :"; my $name = <>; print "Your name is $name\n"; </source>}}The <> ope...") |
(No difference)
|
Latest revision as of 03:16, 16 July 2012
Reading from standard input in perl is very simple.
print "Enter your name :"; my $name = <>; print "Your name is $name\n"; |