aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/examples/hello_v_js.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/examples/hello_v_js.v')
-rw-r--r--v_windows/v/examples/hello_v_js.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/v_windows/v/examples/hello_v_js.v b/v_windows/v/examples/hello_v_js.v
new file mode 100644
index 0000000..2286719
--- /dev/null
+++ b/v_windows/v/examples/hello_v_js.v
@@ -0,0 +1,5 @@
+fn main() {
+ for i in 0 .. 3 {
+ println('Hello from V.js ($i)')
+ }
+}