Get returns working

This commit is contained in:
2025-09-19 14:41:32 -07:00
parent 2b7f9b2fd6
commit 342bdfb169
4 changed files with 175 additions and 77 deletions

View File

@ -138,3 +138,8 @@
(defmacro unwind-protect (form &rest unwind-forms)
(list 'condition-case form
(pair :finally unwind-forms)))
(defun test ()
(return-from test 10))
(println (test))