From c33b8a4fe3b5a60d73691e89a7b773eedef7f598 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Wed, 18 Dec 2019 21:51:08 -0500 Subject: [PATCH] Update Bool builtin a bit --- builtins/Bool.roc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/builtins/Bool.roc b/builtins/Bool.roc index c69d6ae2ed..731440846c 100644 --- a/builtins/Bool.roc +++ b/builtins/Bool.roc @@ -1,7 +1,9 @@ -api Bool provides Bool.*, not, equal, notEqual +interface Bool + exposes [ Bool, not, equal, notEqual ] + imports [] ## Either #True or #False. -Bool := False, True +Bool : [ False, True ] ## Returns #False when given #True, and vice versa. not : Bool -> Bool