From acb1c33ab258dc14dcc51b405b44cc5923b34324 Mon Sep 17 00:00:00 2001
From: Ferenc Szontágh <szf@fsociety.hu>
Date: Fri, 18 Apr 2025 08:52:16 +0000
Subject: [PATCH] add function call
---
test_scripts/test2.vs | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/test_scripts/test2.vs b/test_scripts/test2.vs
index ab60178..bb9d822 100644
--- a/test_scripts/test2.vs
+++ b/test_scripts/test2.vs
@@ -4,7 +4,9 @@
string $variable2 = $variable;
-print("$double: ", $double, "\n");
-print("$variable2: ", $variable2, "\n");
-print("$variable: ", $variable, "\n");
+function test = (int $i) {
+ int $result = $i + 1;
+}
+
+test(5);
\ No newline at end of file
--
Gitblit v1.9.3