diff options
Diffstat (limited to 'test.lang')
| -rw-r--r-- | test.lang | 23 |
1 files changed, 13 insertions, 10 deletions
@@ -1,12 +1,15 @@ -func main(a, b i64) i64 { - let x i64, y bool - if true { - let t = a - a := b - b := t - x := 3 - } else { - //x := 2 +/*func main(a, b i64) i64 { + let x i64 = 0, y bool = true + if a <> 0 { + x := 1 } - return x + return x + a +}*/ + +func one i64 { + return 1 +} + +func main(a, b i64) i64 { + return a & a & b & a & b & b & b } |
