[ create a new paste ] login | about

Link: http://codepad.org/CkcO3w8j    [ raw code | output | fork ]

chankeypathak - Perl, pasted on Sep 16:
1
2
3
4
5
6
7
8
9
#Using concatenation

print "hello ". "world";

print "\n"; #line break

#By sending multiple arguments to print function

print ("hello ", "world");


Output:
1
2
hello world
hello world


Create a new paste based on this one


Comments: