mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-05 12:08:46 +00:00
16 lines
297 B
Forth
16 lines
297 B
Forth
namespace ConsumePlugin
|
|
|
|
/// 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
|