#!/home/ben/software/install/bin/perl use warnings; use strict; use FindBin '$Bin'; use lib $Bin; use NoSigWarn; sub hw($hello, $world) { print "$hello $world\n"; } hw ('hey-ho', 'peeps');