From 3aec8b6b5b857a10f1c0cd02821818ab376679bd Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 29 Jun 2025 00:03:12 +0100 Subject: [PATCH] Reformat --- cclox_src/interpreter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclox_src/interpreter.cc b/cclox_src/interpreter.cc index de932c7..a9b60dc 100644 --- a/cclox_src/interpreter.cc +++ b/cclox_src/interpreter.cc @@ -57,6 +57,6 @@ void run(const std::string &code) { if (expression) { AstPrinter printer{}; - std::cout << printer.print(*expression) << '\n'; + std::cout << printer.print(*expression) << '\n'; } }