Help for this page

Select Code to Download


  1. or download this
    print sum(1..10);
    
    sub sum {
        return scalar map { 1..$_ } @_
    }