diff --git a/BFLib/BFLib.fsproj b/BFLib/BFLib.fsproj index a447533..b2ae88f 100644 --- a/BFLib/BFLib.fsproj +++ b/BFLib/BFLib.fsproj @@ -53,7 +53,7 @@ - + diff --git a/BFLib/ExampleScript.fsx b/BFLib/ExampleScript.fsx new file mode 100644 index 0000000..419026c --- /dev/null +++ b/BFLib/ExampleScript.fsx @@ -0,0 +1,17 @@ +// Use this script file to test out the BFLibCore functions in F# Interactive (no need to compile). + +#load "FunkyFish.fs" +open FunkyFish + +let exampleOne = LibraryTest1 2 4 +printfn "The result for LibraryTest1 is %i" exampleOne + +let exampleTwo = LibraryTest2 3 20 2 +printfn "The result for LibraryTest2 is %i" exampleTwo + +let exampleThree = LibraryTest3 "George" +printfn "The result for LibraryTest3 is %s" exampleThree + +// Feel free to add more functions and test them out here. +// Once they are working as intended you can move them over to ConsoleCommands in BrittleFish. + diff --git a/BFLib/Script.fsx b/BFLib/Script.fsx deleted file mode 100644 index b282c3f..0000000 --- a/BFLib/Script.fsx +++ /dev/null @@ -1,8 +0,0 @@ -// Learn more about F# at http://fsharp.org -// See the 'F# Tutorial' project for more help. - -#load "FunkyFish.fs" -open FunkyFish - -// Feel free to add your own code in here... - diff --git a/BFLibCore/BFLibCore.fsproj b/BFLibCore/BFLibCore.fsproj index 2d97346..9cb1519 100644 --- a/BFLibCore/BFLibCore.fsproj +++ b/BFLibCore/BFLibCore.fsproj @@ -5,7 +5,7 @@ - + diff --git a/BFLibCore/ExampleScripts.fsx b/BFLibCore/ExampleScript.fsx similarity index 100% rename from BFLibCore/ExampleScripts.fsx rename to BFLibCore/ExampleScript.fsx