diff options
| author | WormHeamer | 2025-10-21 06:25:44 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-10-21 06:25:44 -0400 |
| commit | bd3ab1a4ebeea3a3ce2be1cf49459ca5910eb0bd (patch) | |
| tree | 0beb247bcffe1f552fa45428d7e19b8ddd87f5cc | |
| parent | b1c02ea15eb772666a1f7a700f84cd9be9515e07 (diff) | |
.
| -rw-r--r-- | test.lang | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -1,12 +1,9 @@ func main(a, b i64) i64 { + let x = 2 if a < b { - if a = 5 { - a := 2 - } else { - a := 7 - } + x := 3 + a } else { - a := 4 + x := 4 + (x * b) } - return a + b + return x } |
