hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit a14867199f35d146308ca98da6f9a29298a70ff5
parent 2c516cd6081c4af634355d08afd4fc53fff6aa38
Author: Alexey Yerin <yyp@disroot.org>
Date:   Tue, 31 Aug 2021 00:40:16 +0300

cmd/haredoc/hare: add missing space between // and README

Signed-off-by: Alexey Yerin <yyp@disroot.org>

Diffstat:
Mcmd/haredoc/hare.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/haredoc/hare.ha b/cmd/haredoc/hare.ha @@ -16,7 +16,7 @@ fn emit_hare(ctx: *context) (void | error) = { readme: *io::stream => { for (true) match (bufio::scanline(readme)?) { b: []u8 => { - fmt::printfln("//{}", strings::fromutf8(b))?; + fmt::printfln("// {}", strings::fromutf8(b))?; free(b); }, io::EOF => break,