5 changed files with 19 additions and 10 deletions
@ -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. |
||||
|
@ -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... |
||||
|
Loading…
Reference in new issue