This commit is contained in:
2026-09-23 00:36:22 -04:00
commit 6e4f9cd65a
74 changed files with 57163 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
Error :: distinct |{
failed
}
reversed := 'value'->reverse_chrs
sum_text := {1 + 2}->to_str
continued := 'value'
->reverse_chrs
->reverse_chrs
commented := 'value' # an inline comment preserves continuation
->reverse_chrs
computed := 1 + 2
->to_str
fallible: i32 -> i32 ! Error: @ value: i32 { value! }
propagate: i32 -> i32 ! Error: @ value: i32 {
result := {value->fallible}?
result!
}