1
0
Fork 0
forked from fun/fun

Added echo to output data wthout a newline. (0.36.2)

This commit is contained in:
Johannes Findeisen 2025-12-10 00:30:24 +01:00
commit b1e1160bff
6 changed files with 35 additions and 2 deletions

View file

@ -77,6 +77,7 @@ static const char *opcode_name(OpCode op) {
case OP_CALL: return "CALL";
case OP_RETURN: return "RETURN";
case OP_PRINT: return "PRINT";
case OP_ECHO: return "ECHO";
case OP_HALT: return "HALT";
case OP_MOD: return "MOD";
case OP_AND: return "AND";