changeset 21:a4ac42c69285

cleanup.
author William Morgan <bill@mrgn.org>
date Fri, 09 Aug 2013 15:53:53 -0700
parents 92db3d1e8809
children a4837071b73d
files src/requests.tp
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/requests.tp	Fri Aug 09 15:52:16 2013 -0700
+++ b/src/requests.tp	Fri Aug 09 15:53:53 2013 -0700
@@ -1,20 +1,14 @@
 #{
 
 	strJoin <- :str arr {
-		//head <- arr.get(0)
-		//tail <- arr.
-		print: "go\n"
-		//print: (string: (arr length))
 		acc <- ""
 		arr foreach: :i el {
-			print: (string: i) . " " . (string: el) . "\n"
 			if: i = 0 {
 				acc <- (string: el)
 			} else: {
 				acc <- acc . ", " . (string: el)
 			}
 		}
-		print: "stop\n"
 		acc
 		//arr fold: "" with: :acc el {acc . el}
 	}