Move template to top level. Add license.
[jackhill/mal.git] / template / step5_tco.txt
similarity index 99%
rename from docs/steps/step5_tco.txt
rename to template/step5_tco.txt
index 30e2a46..7f77065 100644 (file)
@@ -47,7 +47,7 @@ class Env (outer=null,binds=[],exprs=[])
   set(k,v): return data.set(k,v)
   find(k): return data.has(k) ? this : (if outer ? find(outer) : null)
   get(k): return data.find(k).get(k) OR raise "'" + k + "' not found"
-    
+
 --- core module ---------------------------------
 ns = {'=:        equal?,
       'nil?:     nil?,