WIP: define the helper types

This commit is contained in:
Smaug123
2025-04-13 18:43:23 +01:00
parent 17da7317e8
commit 4befdb93e5
7 changed files with 1764 additions and 4560 deletions

View File

@@ -1,11 +1,10 @@
namespace Playground
open GeneratedParsers
module Program =
[<EntryPoint>]
let main argv =
["--whatnot=2024-01-12";"--info1=4";"--info2=hi"]
|> ArgsModule.parse
[ "--whatnot=2024-01-12" ; "--info1=4" ; "--info2=hi" ]
|> Args.parse
|> printfn "%O"
0