"hello, world.\n"; #### print "hello, world.\n"; #### sub string { return ("hello, world.\n"); } print string(); #### sub f1 { return ("hello, world.\n"); } sub pi { return (3.14159); } for (1..10) { print f1(); }