Skip to content

Commit 8de82cd

Browse files
Fix show on Byte for chez
1 parent 691200c commit 8de82cd

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 ${value})"
93+
chez "(string (integer->char ${value}))"
9494
llvm """
9595
%z = call %Pos @c_bytearray_show_Byte(i8 ${value})
9696
ret %Pos %z

0 commit comments

Comments
 (0)