Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
3
Task/String-length/Wren/string-length-1.wren
Normal file
3
Task/String-length/Wren/string-length-1.wren
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
System.print("møøse".bytes.count)
|
||||
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".bytes.count)
|
||||
System.print("J̲o̲s̲é̲".bytes.count)
|
||||
3
Task/String-length/Wren/string-length-2.wren
Normal file
3
Task/String-length/Wren/string-length-2.wren
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
System.print("møøse".count)
|
||||
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".count)
|
||||
System.print("J̲o̲s̲é̲".count)
|
||||
5
Task/String-length/Wren/string-length-3.wren
Normal file
5
Task/String-length/Wren/string-length-3.wren
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import "./upc" for Graphemes
|
||||
|
||||
System.print(Graphemes.clusterCount("møøse"))
|
||||
System.print(Graphemes.clusterCount("𝔘𝔫𝔦𝔠𝔬𝔡𝔢"))
|
||||
System.print(Graphemes.clusterCount("J̲o̲s̲é̲"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue