[honu] remove extra semicolon from cond

This commit is contained in:
Jon Rafkind 2011-10-23 14:04:58 -06:00
parent dccdcb0550
commit 6b519f7b64
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
(lambda (code context)
(syntax-parse code #:literal-sets (cruft)
[(_ (~seq clause:honu-expression colon body:honu-expression (~optional honu-comma)) ...
semicolon . rest)
. rest)
(values
#'(cond
[clause.result body.result] ...)

View File

@ -80,7 +80,7 @@
var n = 5;
cond
n < 10: 'x1,
n > 10: 'x2;
n > 10: 'x2
}
@output{'x1