1
2
3
4
5
6
7
8
9
10

#[derive(Clone)]
pub enum AST {
   Nil
}

impl AST {
   pub fn print(&self) {}
   pub fn print_ascripted(&self) {}
}