pub fn is_slash_command(input: &str) -> bool
Check if input starts with a slash command.
assert!(is_slash_command("/help")); assert!(!is_slash_command("hello"));