diff options
Diffstat (limited to 'test.lang')
| -rw-r--r-- | test.lang | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,6 +1,8 @@ -proc main(a, b i64) { +func main(a, b i64) i64 { if a = b { - b := 3 + let t = a + a := b + b := t } - return a + return a + b } |
