mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
314 B
10 lines
314 B
3 years ago
|
# 还可以的单向链表
|
||
|
在之前我们写了一个最小可用的单向链表,下面一起来完善下,首先创建一个新的文件 `src/second.rs`,然后在 `lib.rs` 中引入:
|
||
|
```rust
|
||
|
// in lib.rs
|
||
|
|
||
|
pub mod first;
|
||
|
pub mod second;
|
||
|
```
|
||
|
|
||
|
并将 `first.rs` 中的所有内容拷贝到 `second.rs` 中。
|