diff options
| author | WormHeamer | 2025-08-10 23:05:24 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-08-10 23:05:24 -0400 |
| commit | 866d14b5150c356718916fe8b7cfac45aea283ce (patch) | |
| tree | 955d069c8ff671a9d0c6de5f1e8ea8ec8de591c5 /test.lang | |
| parent | 60aadb12969755727709bf293e140ef9d8301d43 (diff) | |
remove some debug printfs
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 } |
