Category talk:Wren-sort: Difference between revisions

Content added Content deleted
(→‎Source code: Removed Sort.reverse method (transferred to Seq module).)
m (→‎Source code: Fixed syntax highlighting.)
Line 1: Line 1:
===Source code===
===Source code===


<lang ecmascript>/* Module "sort.wren" */
<syntaxhighlight lang=ecmascript>/* Module "sort.wren" */
import "./trait" for Comparable
import "./trait" for Comparable


Line 712: Line 712:
// Returns the string representation of 'this'.
// Returns the string representation of 'this'.
toString { _lst.toString }
toString { _lst.toString }
}</lang>
}</syntaxhighlight>