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