blob: fa142a315a55293254a8e63d111c85b23dc7331e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
;; -*- compile-command: "guile -L . -e main -s main.scm < input.txt"; -*-
(use-modules (pp)
((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)
(let ((result
(if (null? (cdr args))
(pp (stdin-to-str) #t)
(pp (stdin-to-str) #f))))
(display result))
(newline))
|