in reply to Hello World!

How about this:
perl -e "print 'world',(print 'hello ')&& undef"
The && undef part is to stop it displaying "Hello world1", 1 being returned by the second print( 1 && undef will return the empty string '', which will not be displayed).