1
0
Fork 0
forked from fun/fun

Added new opcode OP_ENV to provide an env() function to get environment variables from your OS.

This commit is contained in:
Johannes Findeisen 2025-09-27 10:06:04 +02:00
commit 4345fc6f0c
6 changed files with 47 additions and 3 deletions

View file

@ -266,6 +266,7 @@ void vm_run(VM *vm, Bytecode *entry) {
#include "vm/io/read_file.c"
#include "vm/io/write_file.c"
#include "vm/os/env.c"
#include "vm/logic/and.c"
#include "vm/logic/eq.c"