chore: fix test
This commit is contained in:
parent
82780be144
commit
0c6d6f1ff1
1 changed files with 2 additions and 2 deletions
|
|
@ -13,8 +13,8 @@ dbgTrace ("f2: " ++ toString x) $ fun _ =>
|
|||
g x
|
||||
|
||||
def main (xs : List String) : IO UInt32 :=
|
||||
let t1 := Task.mk $ (fun _ => f1 xs.head.toNat);
|
||||
let t2 := Task.mk $ (fun _ => f2 xs.head.toNat);
|
||||
let t1 := Task.mk $ (fun _ => f1 xs.head!.toNat!);
|
||||
let t2 := Task.mk $ (fun _ => f2 xs.head!.toNat!);
|
||||
dbgSleep 1000 $ fun _ =>
|
||||
IO.println (toString t1.get ++ " " ++ toString t2.get) *>
|
||||
pure 0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue