Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import discord
  2. from discord.ext import commands
  3.  
  4. description = 'potato'
  5. bot = commands.Bot(command_prefix='|', description=description)
  6.  
  7.  
  8. @bot.command(name='test')
  9. async def _test():
  10. await bot.say('Hello World.')
  11.  
  12. bot.run('token')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement