From 276cb4150d347d8b8baa1e8aa66b19b348126bb1 Mon Sep 17 00:00:00 2001 From: Jon Rafkind Date: Wed, 18 Jan 2012 14:15:54 -0700 Subject: [PATCH] [honu] replace = with in --- collects/tests/honu/macros.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/tests/honu/macros.rkt b/collects/tests/honu/macros.rkt index 8c217a6967..676714908f 100644 --- a/collects/tests/honu/macros.rkt +++ b/collects/tests/honu/macros.rkt @@ -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)) }