summaryrefslogtreecommitdiff
path: root/trebuchet/main.scm
blob: f96ba5d6eec8d78db8e3ac52fe6cd31af6e196d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; -*- compile-command: "guile -L . -e main -s main.scm < input.txt"; -*-
(use-modules (t)
	     ((ice-9 rdelim))
	     (ice-9 binary-ports))


(define (stdin-to-str)
  (let loop ((result ""))
    (let ((line (read-line)))
      (if (eof-object? line)
	  result
	  (loop (string-append result line "\n"))))))

(define (main args)
  (display (t (stdin-to-str)
	      (null? (cdr args))))
  (newline))