It's super annoying that F# functions are not converted automatically to `Action`/`Func` when passed to methods:  So we have to write ugly code like this `Action<_> (printfn "%s")` or like this `fun x -> printfn "%s" x`