faqts : Computers : Programming : Languages : Perl : Common Problems

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

2 of 3 people (67%) answered Yes
Recently 2 of 3 people (67%) answered Yes

Entry

Does a short form for print "hello\n" exist ?

Nov 13th, 2002 08:45
Murat Uenalan,


Yes. Use the println function from the CPAN module "IO::Extended".

use IO::Extended qw(:all);

println "Hello";