diff options
Diffstat (limited to 'tnslc/paths.tnsl')
-rw-r--r-- | tnslc/paths.tnsl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tnslc/paths.tnsl b/tnslc/paths.tnsl index c85da11..1e8c705 100644 --- a/tnslc/paths.tnsl +++ b/tnslc/paths.tnsl @@ -58,16 +58,17 @@ ;return out ;/ -/; join ({}{}charp s, charp j) [{}charp] +/; join ({}{}charp s, charp jc) [{}charp] ;{}charp out = "" /; loop (int i = 0; i < len s) [i++] /; loop (int j = 0; j < len s{i}) [j++] ;out.append(s{i}{j}) ;/ /; if (i < len s - 1) - ;out.append(j) + ;out.append(jc) ;/ ;/ + ;return out ;/ |