From 170146ee7e2bd35af19a30c7cfedf17a6aadee9f Mon Sep 17 00:00:00 2001 From: SpookyDervish <78246495+SpookyDervish@users.noreply.github.com> Date: Tue, 14 Oct 2025 21:34:18 +1100 Subject: [PATCH] wrote test program for functions --- tests/test.pla | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test.pla b/tests/test.pla index f9a059e..015bf21 100644 --- a/tests/test.pla +++ b/tests/test.pla @@ -1,3 +1,7 @@ +test = Func(): Int { + return 123; +} + main = Func(): Int { - + return test(); } \ No newline at end of file