摘要: 1 enum List { 2 Cons(u64, Box), 3 NULL, 4 } 5 6 impl List { 7 fn new() -> List { 8 List::NULL 9 } 10 11 fn prepend(self, elem: u64) -> List { 12 List::C... 阅读全文
posted @ 2018-02-06 16:14 范辉 阅读(1440) 评论(0) 推荐(0) 编辑