#!/usr/bin/perl

use strict;


#methods are stored before any commands are executed. 
#This is why the main() call can happen before the main method is defined.
##notice the main 
main();  



sub main {  #

    print "this is the main method";
    


}


main();  #hunh-  we can call main again if we want.

