Files
pebble/examples/02_operations.peb

9 lines
108 B
Plaintext

let a = 4
let b = 5
let c = a + b
c *= 7
let d = (3.2 - 0.2) + 4 * 6 / 2
print(a)
print(b)
print(c)
print(d)