summaryrefslogtreecommitdiff
path: root/meap/meap-code/ch4/ch4-rc-groundstation.rs
blob: c51f86556b907bbd73bcd53c08d1af8bdb16570f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use std::rc::Rc;

#[derive(Debug)]
struct GroundStation {}

fn main() {
  let base: Rc<GroundStation> = Rc::new(GroundStation {});
  
  println!("{:?}", base);
}