# HG changeset patch # User Mike Pavone # Date 1377563237 25200 # Node ID 35d2cc193d990854a0583a96327e8da11d9669e4 # Parent 181d8754a2ae02d1c6b93cba121b1905cf7f1b13 Add string conversion inside array join so callers don't need to worry about doing string conversions themselves diff -r 181d8754a2ae -r 35d2cc193d99 modules/array.tp --- a/modules/array.tp Sun Aug 25 14:45:00 2013 -0700 +++ b/modules/array.tp Mon Aug 26 17:27:17 2013 -0700 @@ -105,7 +105,7 @@ join <- :sep { if: length > 0 { - str <- get: 0 + str <- string: (get: 0) idx <- 1 l <- length while: { idx < l } do: {