Rearrange & setup

This commit is contained in:
2026-05-03 23:00:41 +01:00
parent f953f72322
commit 9e85763f9e
12 changed files with 125 additions and 28 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "pch.h"
#include "utils.h"
namespace Ruby {
extern mrb_state *mrb;
struct Block {
mrb_value proc;
Block(mrb_value proc) : proc(proc) {
mrb_gc_protect(mrb, proc);
}
};
}; // namespace Ruby