use strict; use warnings; sub parser; open INFILE, '<', $0; while () { chomp; parser $_; } sub parser { print "Hello, world\n"; } __END__