;; pushing q
REDDIT-DATASET-CREATOR> (progn (with-simple-restart (abort "do abort") (error "this is an error"))
                               (format t "~&hi~%"))
; Evaluation aborted on #<SIMPLE-ERROR "this is an error" {7019CEFB83}>.



;; pushing a
REDDIT-DATASET-CREATOR> (progn (with-simple-restart (abort "do abort") (error "this is an error"))
                               (format t "~&hi~%"))
hi
NIL