add zig codes for Section 'Array', 'LinkedList' and 'List'

This commit is contained in:
sjinzh 2023-01-11 19:56:25 +08:00
parent 2367318a28
commit d75a3582b0

View File

@ -120,7 +120,6 @@ pub fn MyList(comptime T: type) type {
} }
return nums; return nums;
} }
}; };
} }