diff --git a/bot.py b/bot.py index 95824c3..7226912 100644 --- a/bot.py +++ b/bot.py @@ -32,6 +32,10 @@ async def add(ctx, left: int, right: int): async def sub(ctx, left: int, right: int): await ctx.send(left - right) +@bot.command() +async def times(ctx, left: int, right: int): + await ctx.send(left * right) + @bot.command() async def update(ctx): subprocess.Popen('./update.sh')