From acaab9a2075d66dde4cf3ca3adeefaf0f5d9eb04 Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Sat, 14 Sep 2024 03:33:22 +0800 Subject: [PATCH] Print the result from JIT interpretation. --- src/Zhivo.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Zhivo.cpp b/src/Zhivo.cpp index f7c38ff..ac1b2e6 100644 --- a/src/Zhivo.cpp +++ b/src/Zhivo.cpp @@ -32,6 +32,8 @@ auto interpreter() -> int { for(const auto& statement : parser.getGlobalStatements()) result = statement->visit(symbols); + + std::cout << result.toString() << std::endl; return 0; } catch(const std::exception& exc) {