- or download this
if ($roll == $point)
{
...
print "what happens here?"; # loss? draw?
}
}
- or download this
LOSE -1
average dice roll: 7
...
average dice roll: 7
LOSE -1
average dice roll: 7
- or download this
sub rolldice()
{
...
my $roll = $d1 + $d2;
return $roll;
}