1
0
mirror of synced 2026-04-19 17:42:55 +00:00
Files
Interlisp.medley/cl-bench/sysdep/setup-lisp500.lisp
Larry Masinter 02ed8d4bf4 add cl-benchmarks
benchmarks probably belong under internal/benchmarks
2020-09-16 23:17:10 -07:00

14 lines
193 B
Common Lisp

;;; setup file for running cl-bench in lisp500
(load "defpackage")
(in-package :cl-bench)
(defun bench-gc () (cl:gc))
(defmacro with-spawned-thread (&body body)
`(progn ,@body))
;; EOF