about summary refs log tree commit diff
path: root/examples/0.src
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-02-15 10:56:08 +0100
committerBaitinq <[email protected]>2025-02-15 11:00:04 +0100
commitfa6d9cdf57db4244a331035d35d1b962630e3ae1 (patch)
treed3926279eb046bbc11d4102ba8b336d037596da1 /examples/0.src
parentExamples: Update initial example with types (diff)
downloadinterpreter-fa6d9cdf57db4244a331035d35d1b962630e3ae1.tar.gz
interpreter-fa6d9cdf57db4244a331035d35d1b962630e3ae1.tar.bz2
interpreter-fa6d9cdf57db4244a331035d35d1b962630e3ae1.zip
Feature: Introduce initial support for function return types
Diffstat (limited to 'examples/0.src')
-rw-r--r--examples/0.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/0.src b/examples/0.src
index c4cf91d..29a5c85 100644
--- a/examples/0.src
+++ b/examples/0.src
@@ -1,6 +1,6 @@
 /* HELLO! Welcome to the unnamed language */
 
-let main = () => {
+let main = () => i64 {
 	print(18);
 	
 	return 2;