Files
WoofWare.Myriad/ConsumePlugin/RecordFile.fs
2023-12-27 20:57:16 +00:00

20 lines
364 B
Forth

namespace ConsumePlugin
type ParseState =
| AwaitingKey
| AwaitingValue of string
/// My whatnot
[<WoofWare.Myriad.Plugins.RemoveOptions>]
type RecordType =
{
/// A thing!
A : int option
/// Another thing!
B : string
/// Yet another thing!
C : float list
}
static member DefaultA () : int = 3