String length: Difference between revisions

Content added Content deleted
(Undo revision 302650 by PureFox (talk) Oops, should have read the task description properly!)
(→‎{{header|Wren}}: Added output and syntax highlighting to both scripts.)
Line 3,252: Line 3,252:
=={{header|Wren}}==
=={{header|Wren}}==
===Byte Length===
===Byte Length===
<lang wren>System.print("møøse".bytes.count)
<lang ecmascript>System.print("møøse".bytes.count)
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".bytes.count)
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".bytes.count)
System.print("J̲o̲s̲é̲".bytes.count)
System.print("J̲o̲s̲é̲".bytes.count)</lang>

</lang>
{{out}}
<pre>
7
28
13
</pre>

===Character Length===
===Character Length===
<lang wren>System.print("møøse".count)
<lang ecmascript>System.print("møøse".count)
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".count)
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".count)
System.print("J̲o̲s̲é̲".count)
System.print("J̲o̲s̲é̲".count)</lang>

</lang>
{{out}}
<pre>
5
7
8
</pre>


=={{header|x86 Assembly}}==
=={{header|x86 Assembly}}==