implemented very simple repl

This commit is contained in:
Karma Riuk
2025-07-01 18:43:25 +02:00
parent aee7a741b1
commit 69bee723a2
4 changed files with 42 additions and 3 deletions

6
src/repl/repl.hpp Normal file
View File

@@ -0,0 +1,6 @@
#include <istream>
#include <ostream>
namespace repl {
void start(std::istream&, std::ostream&);
}