String length: Difference between revisions

→‎{{header|Wren}}: Combined into one script, added output plus syntax highlighting.
(Add Avail entry)
(→‎{{header|Wren}}: Combined into one script, added output plus syntax highlighting.)
Line 3,251:
 
=={{header|Wren}}==
<lang ecmascript>// Byte length
===Byte Length===
<lang wren>System.print("møøse".bytes.count)
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".bytes.count)
System.print("J̲o̲s̲é̲".bytes.count)
System.print()
</lang>
 
===// Character Length===length
<lang wren>System.print("møøse".count)
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".count)
System.print("J̲o̲s̲é̲".count)</lang>
 
</lang>
{{out}}
<pre>
7
28
13
 
5
7
8
</langpre>
 
=={{header|x86 Assembly}}==
9,490

edits