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
185 B
Python
Raw Normal View History

2013-07-08 12:22:06 +02:00
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))