aboutsummaryrefslogtreecommitdiff
path: root/src/bool.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'src/bool.gleam')
-rw-r--r--src/bool.gleam12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bool.gleam b/src/bool.gleam
index 5375d0e..5a89287 100644
--- a/src/bool.gleam
+++ b/src/bool.gleam
@@ -1,5 +1,5 @@
import expect
-// import order:[Gt, Eq, Lt]
+import order
// pub fn not(bool) {
// case bool {
@@ -9,7 +9,7 @@ import expect
// }
// test not {
-// not(True)
+// let _ = not(True)
// |> expect:false
// not(False)
@@ -18,10 +18,10 @@ import expect
// pub fn compare(a, b) {
// case {a, b} {
-// | {True, True} -> Eq
-// | {True, False} -> Gt
-// | {False, False} -> Eq
-// | {False, True} -> Gt
+// | {True, True} -> order:Eq
+// | {True, False} -> order:Gt
+// | {False, False} -> order:Eq
+// | {False, True} -> order:Gt
// }
// }