diff --git a/BrittleFish/ConsoleCommands.fs b/BrittleFish/ConsoleCommands.fs index 196c531..72c3309 100644 --- a/BrittleFish/ConsoleCommands.fs +++ b/BrittleFish/ConsoleCommands.fs @@ -44,3 +44,12 @@ [ 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" +