We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f749468 commit ba9fe35Copy full SHA for ba9fe35
1 file changed
source/backends/uxn.d
@@ -431,7 +431,7 @@ class BackendUXN : CompilerBackend {
431
Error(node.error, "Value is too big for 16-bit target");
432
}
433
434
- output ~= format("#%.4x", (cast(short) node.value) & 0x7F);
+ output ~= format("#%.4x\n", (cast(short) node.value) & 0x7F);
435
436
437
override void CompileInteger(IntegerNode node) {
0 commit comments