Files
Toy/repl/lib_io.c
2023-08-02 22:19:09 -04:00

14 lines
231 B
C

#include "lib_io.h"
#include <stdio.h>
//call the hook
typedef struct Natives {
char* name;
Toy_NativeFn fn;
} Natives;
int Toy_hookIO(Toy_Interpreter* interpreter, Toy_Literal identifier, Toy_Literal alias) {
return 1;
}