dotfiles/sbcl/.quicklisp/dists/quicklisp/software/croatoan-20191227-git/src/beep.lisp
2020-02-18 14:21:14 -05:00

11 lines
231 B
Common Lisp

(in-package :de.anvi.croatoan)
(defun alert (&optional (type :beep))
(case type
(:beep (%beep))
(:flash (%flash))
(otherwise (error "Available alert types: :beep :flash"))))
;;; TODOs
;; [ ] Return values, errors.