parent
a1119479aa
commit
240e0f865f
@ -1,10 +1,10 @@ |
|||||||
(def spit (lambda (cunny) |
(def spit (lambda (cunny) |
||||||
(miracle |
(miracle |
||||||
"__builtins__" "print" (id cunny)))) |
"__import__('builtins')" "print" (id cunny)))) |
||||||
|
|
||||||
(def input (lambda () |
(def input (lambda () |
||||||
(miracle |
(miracle |
||||||
"__builtins__" "input" ("")))) |
"__import__('builtins')" "input" ("")))) |
||||||
(def thesis (lambda () |
(def thesis (lambda () |
||||||
(spit |
(spit |
||||||
("this language belongs to makise kurisu. there are many like it, but this one is hers.")))) |
("this language belongs to makise kurisu. there are many like it, but this one is hers.")))) |
||||||
|
@ -1,6 +1,6 @@ |
|||||||
(def length (lambda (cunny) |
(def length (lambda (cunny) |
||||||
(miracle |
(miracle |
||||||
"__builtins__" "len" (cunny)))) |
"__import__('builtins')" "len" (cunny)))) |
||||||
|
|
||||||
(def append (lambda (item, victim) |
(def append (lambda (item, victim) |
||||||
(insert (length victim) item victim))) |
(insert (length victim) item victim))) |
||||||
|
@ -1,3 +1,3 @@ |
|||||||
(def str2lst (lambda (l) |
(def str2lst (lambda (s) |
||||||
(miracle |
(miracle |
||||||
"__builtins__" "list" (l)))) |
"__import__('builtins')" "list" (s)))) |
||||||
|
Loading…
Reference in new issue