ExtensionDsLab/src/LogicalHacking.ExtensionDsLab/Library.fs

17 lines
267 B
Forth

namespace LogicalHacking.ExtensionDsLab
/// Documentation for my library
///
/// ## Example
///
/// let h = Library.hello 1
/// printfn "%d" h
///
module Library =
/// Returns 42
///
/// ## Parameters
/// - `num` - whatever
let hello num = 42