Help for this page

Select Code to Download


  1. or download this
    my $function = sub {
    ...
    };
    ...
            ...
        }
    }
    
  2. or download this
    my $getDiceRoll = sub {
        return int(rand() * 6) + 1;
    ...
            return $roll;
        }
    }