Help for this page
use strict; use warnings; ... print "My Test\n"; Func1(); # ERROR! Func2("Fluffy", 5); # ERROR!
use strict; use warnings; ... print "My Test\n"; Func1(); Func2("Fluffy", 5); # ERROR!