Wrote failing TDD test for timer library, not enabled

This commit is contained in:
2022-11-08 19:40:21 +00:00
parent 4dcc05e796
commit ec39f099ca
5 changed files with 196 additions and 28 deletions

View File

@@ -1,5 +1,6 @@
#include "repl_tools.h"
#include "lib_standard.h"
#include "lib_timer.h"
#include "console_colors.h"
@@ -25,6 +26,7 @@ void repl() {
//inject the libs
injectNativeHook(&interpreter, "standard", hookStandard);
injectNativeHook(&interpreter, "timer", hookTimer);
for(;;) {
printf("> ");