1package SL; 2 3use SelfLoader; 4 5$x = &xyz; 6print "hi: $x\n"; 7 81; 9 10__DATA__ 11 12sub xyz { 13 return 1; 14} 15