Personal thing here, I stumple upon this all the time. Fix this: ```fsharp [EntryPoint] let main _ = 42 ``` to this ```fsharp [<EntryPoint>] let main _ = 42 ``` Could be super helpful in tests also, with all the `Fact` and `Theory` attrs.