document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. fn main() {
  2.     let b: Box<Item>= Box::new(Basketball::new());
  3.     println!("The color of the item is {}", b.color());
  4.     println!("The shape of the item is {}", b.shape());
  5.     println!("The name of the item is {}", b.name());
  6. }
');