diff options
Diffstat (limited to 'test.lang')
| -rw-r--r-- | test.lang | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,9 +1,11 @@ func main(a, b i64) i64 { let x i64, y bool - if a = b { + if a < b { let t = a a := b b := t + } else { + x := 2 } - return a + return (a + b) + x } |
