repo.or.cz
/
nameless-bot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added ping function.
[nameless-bot.git]
/
die.py
blob
31480c06dc8e1493dd6ef4438e89a1f837190571
1
from
random
import
randrange
as
rand
2
3
def
roll
(
num
):
4
diceroll
=
rand
(
1
,
num
+
1
)
5
return
diceroll
6
7
print
(
roll
(
6
))