add function object

This commit is contained in:
2025-06-26 05:11:34 +01:00
parent a275a0a0ad
commit a9d0ba0318
12 changed files with 80 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
#ifndef FUNCTION_H
#define FUNCTION_H
#include "../object.h"
void init_function_type();
ArgonObject *load_argon_function(Translated *translated, RuntimeState *state, struct Stack stack);
#endif // FUNCTION_H