forked from Mirror/wren
String.fromCodePoint(). Fix #219.
This commit is contained in:
5
test/core/string/from_code_point.wren
Normal file
5
test/core/string/from_code_point.wren
Normal file
@ -0,0 +1,5 @@
|
||||
IO.print(String.fromCodePoint(65)) // expect: A
|
||||
IO.print(String.fromCodePoint(164)) // expect: ¤
|
||||
IO.print(String.fromCodePoint(398)) // expect: Ǝ
|
||||
IO.print(String.fromCodePoint(8225)) // expect: ‡
|
||||
IO.print(String.fromCodePoint(0x254b)) // expect: ╋
|
||||
Reference in New Issue
Block a user