You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
446 B
19 lines
446 B
INCLUDE:./loop.klambda
|
|
|
|
(def spit-raw (lambda (cunny)
|
|
(w "/dev/fd/1" cunny)))
|
|
|
|
(def spit (lambda (cunny)
|
|
(spit-raw (+ (conv string cunny) "\n"))))
|
|
|
|
(def prettyspit-lst (lambda (lst-cunny)
|
|
(each lst-cunny
|
|
(id spit-raw (+ (conv string item) " ")))))
|
|
|
|
(def input (lambda ()
|
|
(r "/dev/fd/0" 20)))
|
|
|
|
(def thesis (lambda ()
|
|
(spit
|
|
"this language belongs to makise kurisu. there are many like it, but this one is hers.")))
|
|
(def <3 thesis) |