Function init_characters
Source pub fn init_characters<'a>(source: &'a str) -> Vec<Character<'a>>
5fn main() {
6 let source = include_str!("./other/valid.txt");
7 let words = init_words(source, init_characters(source));
8 let nodes = ParseTree::parse_words(words);
9 for node in nodes {
10 println!("{:#?}", node);
11 }
12}