[honu] replace = with in

This commit is contained in:
Jon Rafkind 2012-01-18 14:15:54 -07:00
parent ae3ff467b0
commit 276cb4150d

View File

@ -8,11 +8,11 @@ macro testx () {x:expression} {
testx 5 * 2
for z = 1 to testx 5 * 2 do
for z in 1 to testx 5 * 2 do
printf("z is ~a\n", z)
macro testfor () {x:expression} {
syntax(for z = 1 to x do
syntax(for z in 1 to x do
printf("z is ~a\n" z))
}