diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/odin/printer/visit.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odin/printer/visit.odin b/src/odin/printer/visit.odin index 48b07bc..7e83086 100644 --- a/src/odin/printer/visit.odin +++ b/src/odin/printer/visit.odin @@ -1457,7 +1457,7 @@ visit_stmt :: proc( } if len(v.vals) >= 2 { - for val in v.vals { + for val in v.vals[1:] { document = cons( document, cons_with_opl(text(","), visit_expr(p, val)), |