10 lines
138 B
Plaintext
10 lines
138 B
Plaintext
|
var foo = 20
|
||
|
var bar = 10
|
||
|
|
||
|
print foo + bar,
|
||
|
print foo - bar,
|
||
|
print foo * bar,
|
||
|
print foo / bar,
|
||
|
|
||
|
print (foo + (foo + (foo + (foo + bar))))
|