osric-cgi/lib/OSRIC/Util.pm

11 lines
115 B
Perl
Raw Normal View History

2015-01-07 11:13:22 -05:00
package OSRIC::Util;
# Rolls a dice of the specified number:
sub d
{
my $n = shift;
return int(rand($n));
}
1;