This commit is contained in:
2026-09-23 00:36:22 -04:00
commit 6e4f9cd65a
74 changed files with 57163 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
inline_array := [1, 2, 3]
newline_array := [
1
2
3
]
comma_array := [
1,
2,
3,
]
inline_block := { first := 1; second := 2; first + second }
InlinePoint :: &{ x: i32:; y: i32: }
inline_point := &InlinePoint.{ x: 1; y: 2 }