Browse Source

Added the help section.

master
Craig Oates 6 years ago
parent
commit
b908c3ed57
  1. 25
      BrittleFish/ConsoleCommands.fs
  2. 5
      BrittleFish/Program.fs

25
BrittleFish/ConsoleCommands.fs

@ -1,4 +1,27 @@
namespace Commands
module ConsoleCommands =
let Test() = "The console is working"
open System
open Console.Waterworks
open Console.Waterworks.Attributes
[<ListCommand>]
[<Description "Display a message to the console signifying the program is running as intended.">]
[<Parameters "none">]
[<Usage "> test">]
let test() = "The console is working"
[<ListCommand>]
[<Description "Closes the program.">]
[<Parameters "none">]
[<Usage "> exit">]
let exit() = System.Environment.Exit(Environment.ExitCode)
[<ListCommand>]
[<Description "Display a list of available commands, info. about the command, its parameters and an example of how to use it.">]
[<Parameters "None">]
[<Usage "> help">]
let help() =
let liaison = CW_Liaison()
liaison.RequestHelpDocumentation("Commands")

5
BrittleFish/Program.fs

@ -1,10 +1,7 @@
open Console.Waterworks
// Learn more about F# at http://fsharp.org
// See the 'F# Tutorial' project for more help.
[<EntryPoint>]
let main argv =
let liaison = CW_Liaison()
liaison.Run("Commands", true)
0 // return an integer exit code
0

Loading…
Cancel
Save