aboutsummaryrefslogtreecommitdiffstats
path: root/tests/types_expected.txt
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-13 16:44:17 +0200
committerBad Diode <bd@badd10de.dev>2021-10-13 16:44:17 +0200
commited1f406102738812fafa5e49ee131fe06c177687 (patch)
tree0bb648c18b6f96e0f020a9f8e664df330199b51b /tests/types_expected.txt
parentb8bad3bf5af3261f25780a8cd8b90a659fe29bab (diff)
downloadbdl-ed1f406102738812fafa5e49ee131fe06c177687.tar.gz
bdl-ed1f406102738812fafa5e49ee131fe06c177687.zip
Add a lot of primitive types
Diffstat (limited to 'tests/types_expected.txt')
-rw-r--r--tests/types_expected.txt18
1 files changed, 10 insertions, 8 deletions
diff --git a/tests/types_expected.txt b/tests/types_expected.txt
index 3a5a2de..58eaa7f 100644
--- a/tests/types_expected.txt
+++ b/tests/types_expected.txt
@@ -5,14 +5,14 @@
5(boolean? "string") -> false 5(boolean? "string") -> false
6(boolean? (+ 1 2 3)) -> false 6(boolean? (+ 1 2 3)) -> false
7(boolean? (not 1)) -> true 7(boolean? (not 1)) -> true
8(null? true) -> false 8(nil? true) -> false
9(null? false) -> false 9(nil? false) -> false
10(null? 1) -> false 10(nil? 1) -> false
11(null? 5) -> false 11(nil? 5) -> false
12(null? "string") -> false 12(nil? "string") -> false
13(null? (+ 1 2 3)) -> false 13(nil? (+ 1 2 3)) -> false
14(null? (not 1)) -> false 14(nil? (not 1)) -> false
15(null? ()) -> true 15(nil? ()) -> true
16(string? true) -> false 16(string? true) -> false
17(string? false) -> false 17(string? false) -> false
18(string? 1) -> false 18(string? 1) -> false
@@ -34,6 +34,8 @@
34(symbol? "string") -> false 34(symbol? "string") -> false
35(symbol? (+ 1 2 3)) -> false 35(symbol? (+ 1 2 3)) -> false
36(symbol? (not 1)) -> false 36(symbol? (not 1)) -> false
37(symbol? 'a) -> true
38(symbol? 'c) -> true
37(pair? false) -> false 39(pair? false) -> false
38(pair? 1) -> false 40(pair? 1) -> false
39(pair? 5) -> false 41(pair? 5) -> false