6 lines
52 B
Plaintext
Raw Normal View History

2024-07-06 15:20:52 +02:00
main() {
x := 1
y := x + 1
x = 2
2024-07-28 18:47:13 +02:00
assert y == 2
2024-07-06 15:20:52 +02:00
}