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
2013-09-04 18:30:04 +08:00

8 lines
189 B
Python

from util import hook
@hook.command
def length(inp):
"""length <message> -- gets the length of <message>"""
return "The length of that message is {} characters.".format(len(inp))