pub fn render_tag(tag: &Tag)
6fn main() { 7 new_app(); 8 let tag = new_tag("Hello", 10, 10); 9 render_tag(&tag); 10 wait_for_key(); 11}