struct graph

This commit is contained in:
2026-09-07 15:52:46 -04:00
parent 30ed3351b5
commit 93521c53fb
15 changed files with 1061 additions and 30 deletions

2
examples/types/main.cpp Normal file
View File

@@ -0,0 +1,2 @@
#include "types.hpp"
int main() { demo::Box<int> box(1); box.run(2); }