From 3c645799476e526b04e13f648cd30643c1f39112 Mon Sep 17 00:00:00 2001
From: Ferenc Szontágh <szf@fsociety.hu>
Date: Sat, 19 Apr 2025 14:23:53 +0000
Subject: [PATCH] fix function call in function

---
 README.md |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/README.md b/README.md
index 3651d73..d2acfeb 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@
 string name = "VoidScript";
 
 // Functions
-function add = (int $a, double $b, string $help) {
+function add (int $a, double $b, string $help) {
     int $result = $a + $b;
     print("The sum is: ", $result, "\n");
     print("Help: ", $help, "\n");

--
Gitblit v1.9.3