diff options
author | mRnea <akannemre@gmail.com> | 2024-07-19 14:17:24 +0300 |
---|---|---|
committer | mRnea <akannemre@gmail.com> | 2024-07-19 14:17:24 +0300 |
commit | 6c10a9e951b6a6944bf4a8cafc52168af1f11b27 (patch) | |
tree | 95b9146ae2efea2fb335ed433229aa3f793e78a7 /util.lisp | |
parent | a0fb419b1be8ed53f580c509b7a55cde8e06d4c9 (diff) |
deleted old 'run'
Diffstat (limited to 'util.lisp')
-rw-r--r-- | util.lisp | 24 |
1 files changed, 9 insertions, 15 deletions
@@ -20,12 +20,6 @@ (defun mklist (form) (if (listp form) form (list form))) -;; (defmacro run (args) -;; (let ((sym (gensym))) -;; `(let ((,sym ,args)) -;; (format t "~{~a~^ ~}~%" ,sym) -;; (uiop:run-program ,sym)))) - (defun run (args) (format t "~{~a~^ ~}~%" args) (uiop:run-program args :output *standard-output*)) @@ -34,14 +28,14 @@ ;; (make-pathname :name (pathname-name path) ;; :type "o")) -(defparameter *test-program* - '((push 34) - (push 35) - (plus) - (dump) - (push 500) - (push 80) - (minus) - (dump))) +;; (defparameter *test-program* +;; '((push 34) +;; (push 35) +;; (plus) +;; (dump) +;; (push 500) +;; (push 80) +;; (minus) +;; (dump))) |