Differences From Artifact [aa5a71c7ff]:
- File stml.scm — part of check-in [6fc4c3e74b] at 2015-10-27 03:54:59 on branch selfcontained — Added s:button (user: matt, size: 10657) [annotate] [blame] [check-ins using] [more...]
To Artifact [5df99c79b1]:
- File stml.scm — part of check-in [4c0940a61f] at 2015-12-22 06:12:53 on branch trunk — Return empty string if stuff to output isn't recognised (user: matt, size: 10660) [annotate] [blame] [check-ins using]
︙ | |||
254 255 256 257 258 259 260 | 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | - + | (define (s:output port inlst) (map (lambda (x) (cond ((string? x) (print x)) ;; (print x)) ((symbol? x) (print x)) ;; (print x)) ((list? x) (s:output port x)) |
︙ |