Category talk:Wren-fmt: Difference between revisions

Content added Content deleted
(→‎Source code: Several improvements, notably the addition of (s)printf style methods.)
(→‎Source code: Bug fix.)
Line 408: Line 408:
static v(fn, w, seq, p, sep, bb, cc) {
static v(fn, w, seq, p, sep, bb, cc) {
var l = List.filled(seq.count, "")
var l = List.filled(seq.count, "")
for (i in 0...seq.count) {
var i = 0
var e = seq[i]
for (e in seq) {
l[i] = q(callFn_(fn, w, e, p), cc)
l[i] = q(callFn_(fn, w, e, p), cc)
i = i + 1
}
}
return q(l.join(sep), bb)
return q(l.join(sep), bb)