pub fn parse_ident(input: &str) -> IResult<&str, &str>
Parse a rain identifier, which is composed of any non-special character. Does not accept whitespace before the identifier, and does not consume whitespace after it.
rain