From 67ecc0458060f7e4c4e87506b876f2d688c2c563 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 18 Oct 2020 09:33:55 +0300 Subject: [PATCH] examples: build examples/hello_v_js.v without warnings/errors --- examples/hello_v_js.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello_v_js.v b/examples/hello_v_js.v index 5f4c71e11..228671954 100644 --- a/examples/hello_v_js.v +++ b/examples/hello_v_js.v @@ -1,5 +1,5 @@ fn main() { for i in 0 .. 3 { - println('Hello from V.js') + println('Hello from V.js ($i)') } } -- 2.30.2