Skip to content

Commit fec35ed

Browse files
committed
Fix codegen test meteor.
1 parent b015a9f commit fec35ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/codegen/meteor.art

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn @range_step(body: fn (i32) -> ()) = @|beg: i32, end: i32, step: i32| {
2424
loop(beg, end)
2525
};
2626

27-
fn range(body: fn (i32) -> ()) = @|a: i32, b: i32| range_step(body)(a, b, 1);
27+
fn @range(body: fn (i32) -> ()) = @|a: i32, b: i32| range_step(body)(a, b, 1);
2828

2929
/* The board is a 50 cell hexagonal pattern. For . . . . .
3030
* maximum speed the board will be implemented as . . . . .

0 commit comments

Comments
 (0)