osric-cgi/lib/OSRIC/Util.pm
2015-01-07 16:13:22 +00:00

11 lines
115 B
Perl

package OSRIC::Util;
# Rolls a dice of the specified number:
sub d
{
my $n = shift;
return int(rand($n));
}
1;