Use IOLIB/ in package names
[iolib.git] / src / new-cl / types.lisp
blobe6c12f7a75a0f77d6a79406d931b4cf26f7f2e89
1 ;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
2 ;;;
3 ;;; --- Type definitions and constructors
4 ;;;
6 (in-package :iolib/common-lisp)
8 (deftype boolean ()
9 'cl:boolean)
11 (defun boolean (x)
12 (if x t nil))