-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio.u
85 lines (80 loc) · 1.4 KB
/
io.u
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
(import* str)
;impl helpers
(let readIfF (\handle condition
(do
(c (peekCharF handle))
(if (condition c)
(run
(_ (getCharF handle)) ; must be c
(return (just c))
)
(return nothing)
)
)
))
(let readWhileF (\handle condition (recur (\r
(do
(c_m (readIfF handle condition))
(c_m
(return empty)
(\c (run
(remain r)
(return (cons c remain))
))
)
)
))))
; input
(def readIntF (\handle
(do
(_ (readWhileF handle isSpace))
(sign_m (readIfF handle (= '-')))
(let sign (sign_m 1 (const (neg 1))))
(numbers_c (readWhileF handle isDigit))
(let numbers (atoi numbers_c))
(return (* sign numbers))
)
))
(def readInt (readIntF 0))
(def readLineF (\handle
(do
(body (readWhileF handle (/= '\n')))
(trail (readIfF handle(= '\n')))
(let body_t (trail body (\x (++ body (cons x empty)))))
(return body_t)
)
))
(def readLine (readLineF 0))
; getArg
(let getArgStr (recur (\f (do
(a getArg)
((< a 0) (return "") (run
(remain f)
(return (cons a remain))
))
))))
(def getArgs (do
(a getArgStr)
(return (splitStr 0 a))
))
; output
(def putStrF (\handle (recur (\f (\s (do
(s (return 0) (\h r (
putCharF handle h (\x
((/= x 0) (return x)
(f r return)
)
)
)))
))))))
(def putStrLnF (\handle (\r
(do
(r1 (putStrF handle r))
((/= r1 0)
(return r1)
(putCharF handle 10 return)
)
)
)))
(def putStr (putStrF 1))
(def putStrLn (putStrLnF 1))