From 6385a726cff8c66addea8fe3d6a92c0c7e778f1e Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Sat, 4 Jul 2026 12:25:50 +1000 Subject: [PATCH] Add spaces between printed values --- src/Bytecode/Instruction/execute.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Bytecode/Instruction/execute.c b/src/Bytecode/Instruction/execute.c index cb62b27..2524001 100644 --- a/src/Bytecode/Instruction/execute.c +++ b/src/Bytecode/Instruction/execute.c @@ -79,12 +79,14 @@ struct GroundExecutionResult _GroundBytecodeInstructionExecute(GroundBytecodeIns PRINT: { for (GroundSize i = 0; i < instruction->args.len; i++) { printValue(HEAP_GET(heap, instruction->args.at[i])); + printf(" "); } return CONTINUE; } PRINTLN: { for (GroundSize i = 0; i < instruction->args.len; i++) { printValue(HEAP_GET(heap, instruction->args.at[i])); + printf(" "); } printf("\n"); return CONTINUE;