use frankencell::{first, cells::Cell};
fn main() {
let (chars, next) = first().unwrap().token();
let (nums, _) = next.token();
let a = Cell::new('a');
let b = Cell::new('b');
let c = Cell::new('c');
let one = Cell::new(1);
let two = Cell::new(2);
let three = Cell::new(3);
println!("{}{}{}{}",
a.borrow(&chars),
b.borrow(&chars),
one.borrow(&nums),
two.borrow(&nums),
);
c.borrow(&nums);
three.borrow(&chars);
}