Update roc files to use new opaque bools

This commit is contained in:
kilianv 2022-09-14 21:12:15 +02:00 committed by Ayaz Hafiz
parent 9717747a54
commit 610c529ba8
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
19 changed files with 114 additions and 114 deletions

View file

@ -1,2 +1,2 @@
when Delmin (Del rx) 0 is
Delmin (Del ry ) _ -> Node Black 0 False ry
Delmin (Del ry ) _ -> Node Black 0 Bool.false ry

View file

@ -1 +1 @@
1 * if True then 1 else 1
1 * if Bool.true then 1 else 1

View file

@ -1 +1 @@
{x : if True then 1 else 2, y: 3 }
{x : if Bool.true then 1 else 2, y: 3 }