This file demonstrates how to write literate F# script
files (*.fsx
) that can be transformed into nice HTML
As you can see, a comment starting with double asterisk is treated as part of the document and is transformed using Markdown, which means that you can use:
And numerous other Markdown features.
Code that is not inside comment will be formatted as a sample snippet (which also means that you can run it in Visual Studio or MonoDevelop).
/// The Hello World of functional languages!
let rec factorial x =
if x = 0 then 1
else x * (factorial (x - 1))
let f10 = factorial 10
If you want to include some code in the source code,
but omit it from the output, you can use the hide
command.
The value will be defined in the F# code and so you can use it from other (visible) code and get correct tool tips:
let answer = hidden
Sometimes, it is useful to first explain some code that
has to be located at the end of the snippet (perhaps
because it uses some definitions discussed in the middle).
This can be done using include
and define
commands.
The following snippet gets correct tool tips, even though
it uses laterFunction
:
let sample =
laterFunction()
|> printfn "Got: %s"
Then we can explain how laterFunction
is defined:
let laterFunction() =
"Not very difficult, is it?"
This example covers pretty much all features that are
currently implemented in literate.fsx
, but feel free
to fork the project on GitHub and add more
features or report bugs!