7 lines
53 B
Plaintext
7 lines
53 B
Plaintext
list = [1 2 3]
|
|
|
|
for i in list {
|
|
i += 1
|
|
output(i)
|
|
}
|