From 2c9057b8f009bd39d97a2d30cf71135cb07c5e4b Mon Sep 17 00:00:00 2001 From: nasr Date: Fri, 6 Mar 2026 18:53:23 +0000 Subject: improvement(main): worked on the lexer, close to finishing the tokenization csv's are simple --- source/repl/repl.c | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'source/repl/repl.c') diff --git a/source/repl/repl.c b/source/repl/repl.c index 4c57345..dd289d8 100644 --- a/source/repl/repl.c +++ b/source/repl/repl.c @@ -1,16 +1,12 @@ -#ifndef ENGINE_REPL_H -#define ENGINE_REPL_H - -typedef struct node node; -struct node -{ - -}; - -typedef struct btree btree; -struct btree +internal void +init_repl() { + for(;;) + { + print("reading user input..."); + // TODO(nasr): design a repl system -}; + sleep(1); + } -#endif /* ENGINE_H */ +} -- cgit v1.3