gdritter repos when-computer / 820d07f
defensive substring Getty Ritter 2 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Collapse all Expand all
209209 (cdr lst))))))
210210
211211 (define (string-take str i)
212 (substring str 0 i))
212 (substring str 0 (min i (string-length str))))
213213
214214 (define (string-drop str i)
215215 (let ((l (string-length str)))