make archives for current stage

This commit is contained in:
12hydrogen
2026-06-25 15:07:55 +08:00
parent d0b566773e
commit 432238635b
4 changed files with 63 additions and 9 deletions
+8
View File
@@ -0,0 +1,8 @@
#include "pool.hpp"
int main() {
Queue<int> queue;
queue.push(1);
auto load = queue.pop();
}