Skip to content

Commit d5bd300

Browse files
committed
lisp -> coal
hash.coal builtin.coal math/arith.coal num.coal bounded.coal
1 parent 9e6b4cf commit d5bd300

14 files changed

+1294
-1307
lines changed

coalton.asd

+6-6
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@
4545
(:file "utils")
4646
(:coalton-file "types")
4747
(:coalton-file "primitive-types")
48-
(:file "classes")
49-
(:file "hash")
50-
(:file "builtin")
48+
(:coalton-file "classes")
49+
(:coalton-file "hash")
50+
(:coalton-file "builtin")
5151
(:coalton-file "functions")
5252
(:coalton-file "boolean")
5353
(:coalton-file "bits")
5454
(:module "math"
5555
:serial t
56-
:components ((:file "arith")
57-
(:file "num")
58-
(:file "bounded")
56+
:components ((:coalton-file "arith")
57+
(:coalton-file "num")
58+
(:coalton-file "bounded")
5959
(:file "conversions")
6060
(:file "fraction")
6161
(:file "integral")

library/builtin.coal

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
(package coalton-library/builtin
2+
(import
3+
coalton-library/classes)
4+
(export
5+
unreachable
6+
undefined
7+
error ; re-export from classes
8+
not
9+
xor
10+
boolean-not
11+
boolean-or
12+
boolean-and
13+
boolean-xor))
14+
15+
(lisp-toplevel ()
16+
(cl:eval-when (:compile-toplevel)
17+
(cl:defmacro unreachable (cl:&optional (datum "Unreachable") cl:&rest arguments)
18+
"Signal an error with CL format string DATUM and optional format arguments ARGUMENTS."
19+
`(lisp :a ()
20+
(cl:error ,datum ,@arguments)))))
21+
22+
(define (undefined _)
23+
"A function which can be used in place of any value, throwing an error at runtime."
24+
(error "Undefined"))
25+
26+
(define not
27+
"Synonym for `boolean-not`."
28+
boolean-not)
29+
30+
(define xor
31+
"Synonym for `boolean-xor`."
32+
boolean-xor)
33+
34+
(declare boolean-not (Boolean -> Boolean))
35+
(define (boolean-not x)
36+
"The logical negation of `x`. Is `x` false?"
37+
(match x
38+
((True) False)
39+
((False) True)))
40+
41+
(declare boolean-or (Boolean -> Boolean -> Boolean))
42+
(define (boolean-or x y)
43+
"Is either `x` or `y` true? Note that this is a *function* which means both `x` and `y` will be evaluated. Use the `or` macro for short-circuiting behavior."
44+
(match x
45+
((True) True)
46+
((False) y)))
47+
48+
(declare boolean-and (Boolean -> Boolean -> Boolean))
49+
(define (boolean-and x y)
50+
"Are both `x` and `y` true? Note that this is a *function* which means both `x` and `y` will be evaluated. Use the `and` macro for short-circuiting behavior."
51+
(match x
52+
((True) y)
53+
((False) False)))
54+
55+
(declare boolean-xor (Boolean -> Boolean -> Boolean))
56+
(define (boolean-xor x y)
57+
"Are `x` or `y` true, but not both?"
58+
(match x
59+
((True) (boolean-not y))
60+
((False) y)))

library/builtin.lisp

-71
This file was deleted.

0 commit comments

Comments
 (0)