1use vizz::Visualize; 2 3pub fn main() { 4 let my_int: u8 = 128; 5 let my_int_dot = (&my_int).render_node(); 6 println!("{}", my_int_dot); 7}