pub fn is_identifer(s: &str) -> bool
Expand description
A valid identifier is a sequence of ASCII letters, digits, and underscores, starting with a letter.
We could expand this at some point to include any valid Unicode identifier (see https://docs.rs/unicode-ident/latest/unicode_ident/), but that seems overboard for now.