Help for this page

Select Code to Download


  1. or download this
    package Student;
    use warnings;
    ...
    
    1;
    
  2. or download this
    #!/usr/bin/perl -l
    use warnings;
    ...
    print join " - " => ( $std2->name(), $std2->score() ); # prints melchi
    + - 78
    
    print join " - " => ( $std->name("kunle"), $std2->score(90) ); # print
    +s kunle - 90