no :: in func decls

This commit is contained in:
2026-06-30 19:31:26 +02:00
parent ae5af37b85
commit 07c560b750
107 changed files with 580 additions and 520 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import "../math"
main :: func() i32 {
main func() i32 {
return math.sum(local_value, math.value)
}
+1 -1
View File
@@ -1,5 +1,5 @@
value i32 :: 2
sum :: func(a, b i32) i32 {
sum func(a, b i32) i32 {
return a + b
}