aboutsummaryrefslogtreecommitdiff
path: root/examples/guile.lyn
blob: 9d7f445531f191db592808d7e13f922cf34b62ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
define-syntax-rule (for init condition post body) {
	expand init
	do () ((not (expand condition))) {
		expand body
		expand post
	}
}

define (sum n) {
	define s 0
	for (define i 0) (< i n) (set! i (1+ i)) {
		set! s (+ s i)
	}
	get s
}

display (sum 1000000)
newline