1
2
3
4
5
6
7
8
9

pub struct Tokens {}
impl Tokens {
   pub fn print(&self) {}
}

pub fn tokenize_file(_file_path: &str) -> Tokens {
   Tokens {}
}