pub fn capitalize_identifier(word: &mut str)
Expand description
Capitalizes the first character of the string.
use verilization_compiler::util::capitalize_identifier;
let mut word = String::from("hello");
capitalize_identifier(&mut word);
assert_eq!(word, "Hello");