We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd82954 commit 2963da2Copy full SHA for 2963da2
1 file changed
demo/fsharp-demo.fsx
@@ -3,9 +3,9 @@
3
open CommandLine
4
5
type options = {
6
- [<Option(HelpText = "Define a string value here.")>] stringValue : string;
7
- [<Option('i', Min = 3, Max = 4, HelpText = "Define a int sequence here.")>] intSequence : seq<int>;
8
- [<Option('x', HelpText = "Define a boolean or switch value here.")>] boolValue : bool;
+ [<Option(HelpText = "Input a string value here.")>] stringValue : string;
+ [<Option('i', Min = 3, Max = 4, HelpText = "Input a int sequence here.")>] intSequence : seq<int>;
+ [<Option('x', HelpText = "Define a switch (boolean) here.")>] boolValue : bool;
9
[<Value(0)>] longValue : int64 option;
10
}
11
0 commit comments