aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-15 02:32:40 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-15 02:32:40 +0330
commitff60e01db6d32bd32136bd1f7eb5ab236ebbff55 (patch)
treeebd60cf27f61f03596ea92a1cd271434a2e5bbf1 /code
parent512453533f52c9a318011768297d9ecfdbc02a59 (diff)
better shape shifter with caching
Diffstat (limited to 'code')
-rw-r--r--code/main.felan1
1 files changed, 1 insertions, 0 deletions
diff --git a/code/main.felan b/code/main.felan
index e16ca2c..3456887 100644
--- a/code/main.felan
+++ b/code/main.felan
@@ -7,6 +7,7 @@ f :: (comptime t:type,a:t) -> t {
main :: () -> void {
b:u8 = 2;
f(u8,b);
+ f(u8,b);
};