Skip to content

Commit d5c61a8

Browse files
Show bytes as ints on chez, too
1 parent 8de82cd commit d5c61a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/common/effekt.effekt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ extern pure def show(value: Char): String =
9090

9191
extern pure def show(value: Byte): String =
9292
js "'' + ${value}"
93-
chez "(string (integer->char ${value}))"
93+
chez "(show-number ${value})"
9494
llvm """
9595
%z = call %Pos @c_bytearray_show_Byte(i8 ${value})
9696
ret %Pos %z

0 commit comments

Comments
 (0)