✓
Passing This code compiles and runs correctly.
Code
// Hello World in pure Koru.
// This is the frontpage example from korulang.org.
import std/io
std/io:print.blk {
{% if debug %}[DEBUG] {% endif %}Hello, {{ name:s }}!
The answer is {{ count:d }}.
}
Actual
[DEBUG] Hello, World!
The answer is 42.
Expected output
✓ Zig✓ JavaScript[DEBUG] Hello, World!
The answer is 42.
Test Configuration
MUST_RUN