Category talk:Wren-long: Difference between revisions

m
→‎Source code: Fixed syntax highlighting.
(→‎Source code: Added ULong.nextPrime method.)
m (→‎Source code: Fixed syntax highlighting.)
Line 30:
 
===Source code===
<langsyntaxhighlight lang=ecmascript>/* Module "long.wren" */
 
import "./trait" for Comparable
Line 919:
static max(a) { a.reduce { |acc, x| (x > acc) ? x : acc } }
static min(a) { a.reduce { |acc, x| (x < acc) ? x : acc } }
}</langsyntaxhighlight>
9,485

edits