chore: fix test
This commit is contained in:
parent
35e1f5ad97
commit
769e3a9082
1 changed files with 3 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
def f : List Nat → IO Unit :=
|
||||
fun (xs : List Nat) =>
|
||||
List.forM
|
||||
(fun (x : Nat) =>
|
||||
List.forM xs
|
||||
fun (x : Nat) =>
|
||||
if x == 0 = true then
|
||||
do
|
||||
IO.println "foo"
|
||||
|
|
@ -14,7 +14,6 @@ fun (xs : List Nat) =>
|
|||
else
|
||||
do
|
||||
IO.println x
|
||||
IO.println "odd")
|
||||
xs
|
||||
IO.println "odd"
|
||||
if true = true then 1 else 0 : Nat
|
||||
if h : true = true then 1 else 0 : Nat
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue