From fa6d9cdf57db4244a331035d35d1b962630e3ae1 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sat, 15 Feb 2025 10:56:08 +0100 Subject: Feature: Introduce initial support for function return types --- examples/1.5.src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/1.5.src') diff --git a/examples/1.5.src b/examples/1.5.src index 0f6f7a0..1f99ee3 100644 --- a/examples/1.5.src +++ b/examples/1.5.src @@ -1,9 +1,9 @@ -let x = () => { +let x = () => i64 { print(22); return 11; }; -let main = () => { +let main = () => i64 { let i = 4; print(i); -- cgit 1.4.1