|
|
@ -4,6 +4,7 @@ |
|
|
|
open System |
|
|
|
open Console.Waterworks |
|
|
|
open Console.Waterworks.Attributes |
|
|
|
open FunkyFish // This is where the "LibraryTest" functions are -- in BFLib |
|
|
|
|
|
|
|
[<ListCommand>] |
|
|
|
[<Description "Display a message to the console signifying the program is running as intended.">] |
|
|
@ -25,3 +26,11 @@ |
|
|
|
let liaison = CW_Liaison() |
|
|
|
liaison.RequestHelpDocumentation("Commands") |
|
|
|
|
|
|
|
let libtest1 x y = String.Format("Result: {0}" , LibraryTest1 x y) |
|
|
|
|
|
|
|
|
|
|
|
let libtest2 x y z = String.Format("Result: {0}", (LibraryTest2 x y z)) |
|
|
|
|
|
|
|
|
|
|
|
let libtest3 name = String.Format("Result: {0}", LibraryTest3 name) |
|
|
|
|