This commit is contained in:
krahets
2023-02-09 22:55:29 +08:00
parent 3dcf65c61b
commit 7d86e2dd11
18 changed files with 1029 additions and 71 deletions

View File

@@ -1552,7 +1552,7 @@ comments: true
```zig title="my_list.zig"
// 列表类简易实现
pub fn MyList(comptime T: type) type {
fn MyList(comptime T: type) type {
return struct {
const Self = @This();