This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/length.py

8 lines
189 B
Python
Raw Normal View History

2013-07-08 12:22:06 +02:00
from util import hook
@hook.command
def length(inp):
2013-09-04 12:30:04 +02:00
"""length <message> -- gets the length of <message>"""
2013-07-08 12:22:06 +02:00
return "The length of that message is {} characters.".format(len(inp))