|
|
@ -44,3 +44,12 @@ |
|
|
|
[<Usage "> libtest3 \"Craig Oates\"">] |
|
|
|
let libtest3 name = String.Format("Result: {0}", LibraryTest3 name) |
|
|
|
|
|
|
|
// this is fine AND SWEET! |
|
|
|
let ``test 4`` = "Hi there" |
|
|
|
|
|
|
|
// this only works when you type "test-5" not ideal but better then nothing |
|
|
|
let ``test-5`` = "Hi there" |
|
|
|
|
|
|
|
// this is also fine... f# does open things up a bit more than C#... SWEET! |
|
|
|
let """test 6""" = "Hi there" |
|
|
|
|