Added ping function.
[nameless-bot.git] / die.py
blob31480c06dc8e1493dd6ef4438e89a1f837190571
1 from random import randrange as rand
3 def roll(num):
4 diceroll = rand( 1,num+1 )
5 return diceroll
7 print(roll(6))