dotfiles/scripts/swank-repl.ros

15 lines
339 B
Text
Raw Normal View History

2023-05-13 13:28:36 +02:00
#!/usr/bin/env -S ros -Q --
#|-*- mode:lisp -*-|#
(progn
(ros:ensure-asdf)
(ql:quickload '(:swank :mondo) :silent t))
2023-05-13 14:41:24 +02:00
(defpackage :swank-mondo-repl
2023-05-13 13:28:36 +02:00
(:use :cl))
2023-05-13 14:41:24 +02:00
(in-package :swank-mondo-repl)
2023-05-13 13:28:36 +02:00
(defun main (&rest argv)
(declare (ignorable argv))
(let ((port (swank:create-server :dont-close t)))
(mondo:main nil :port port)))