diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-03 01:20:36 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-03 01:20:36 -0400 |
| commit | e98e77e1d3fbc2a5fd4d26408d2b13ddbef07110 (patch) | |
| tree | 5fda9571d8a30d6a048305e7e811055eeb5b763e /test/text.tm | |
| parent | 7b44044b5e96d5755c97470d121430e99cd7f990 (diff) | |
Fix for missing codepoint names
Diffstat (limited to 'test/text.tm')
| -rw-r--r-- | test/text.tm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/text.tm b/test/text.tm index b1c4b758..4dd431ca 100644 --- a/test/text.tm +++ b/test/text.tm @@ -204,3 +204,12 @@ func main(): = "bcd" >> "abcdef":slice(from=5, to=1) = "" + + >> house := "家" + = "家" + >> house.length + = 1 + >> house:codepoint_names() + = ["???"] + >> house:utf32_codepoints() + = [23478_i32] |
