1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 02:27:10 +03:00

rexx, ruby: remove extraneous mal files.

This commit is contained in:
Joel Martin 2019-03-13 17:31:57 -05:00
parent 23b7e1085b
commit 73b7847ef6
2 changed files with 0 additions and 8 deletions

View File

@ -1 +0,0 @@
(prn (+ 4 5))

View File

@ -1,7 +0,0 @@
(def! read-args (fn* [args]
(let* [arg (readline "arg> ")]
(if (or (nil? arg) (empty? arg))
args
(read-args (conj args arg))))))
(prn "The args you entered are:" (read-args []))