Skip to content

Commit

Permalink
Fixed typo on the main interpreter.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Sep 20, 2024
1 parent 693a8a5 commit c20d02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Zhivo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ auto interpreter(int argc, char** argv) -> int {
}
catch(const TerminativeContinueSignal& continueExc) {
std::cerr << "[\u001b[1;31mRuntime Error\u001b[0m]: "
<< "\u001b[3;37mInvalid break statement signal caught.\u001b[0m"
<< "\u001b[3;37mInvalid continue statement signal caught.\u001b[0m"
<< std::endl << " "
<< continueExc.getAddress().toString() << std::endl;
}
Expand Down

0 comments on commit c20d02c

Please sign in to comment.