diff --git a/examples/hello_v_js.v b/examples/hello_v_js.v index 5f4c71e115..2286719546 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)') } }