1
0
Fork 0
forked from fun/fun

Added a simple REPL.

This commit is contained in:
Johannes Findeisen 2025-09-14 18:42:23 +02:00
commit 3a2afdea69
3 changed files with 93 additions and 1 deletions

View file

@ -16,4 +16,7 @@
Bytecode *parse_file_to_bytecode(const char *path);
/* Parse source provided as a single string buffer (for REPL, tests, etc.). */
Bytecode *parse_string_to_bytecode(const char *source);
#endif