aboutsummaryrefslogtreecommitdiff
path: root/examples/loop.lyn
blob: 03046721bb268014abbd98f9d14eea23e6063b19 (plain) (blame)
1
2
3
4
5
6
let sum 0
for {let i 0} {< i 1000000} {set i (+ i 1)} {
	set sum (+ sum i)
}

println sum