Help for this page

Select Code to Download


  1. or download this
    package pm1187349;
    use warnings;
    ...
    sub someFunction {
        print "I am some function\n";
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
    # use them
    pm1187349::someFunction();
    print "someScalar = ${pm1187349::someScalar}\n";
    
  3. or download this
    use warnings;
    use strict;
    ...
    # use them
    someFunction();
    print "someScalar = ${someScalar}\n";