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
Luke Rogers bc6d604897 A
2013-07-08 22:22:06 +12:00

8 lines
185 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))