Flat_map <x> <y> (f : x -> List y) (l : List x) : List y
Flat_map f List.nil = List.nil
Flat_map f (List.cons x xs) =
let app = (f x)
List.concat app (Flat_map f xs)
Main {
(Flat_map (n => [n, n]) [1,5,4])
}
The kind2 check <file> command hangs indefinitely. If I try to run said file, it runs correctly.
Also, if I change the Main to:
If I try to check this:
The
kind2 check <file>
command hangs indefinitely. If I try to run said file, it runs correctly. Also, if I change the Main to:It checks appropriately