// Test: Basic arithmetic let main = fn () => let x = 10 in let y = 20 in let sum = x + y in let product = x * y in print(sum)