本文概述
- F#单行注释
- F#多行注释
F#中有两种类型的注释。
- 单行注释
- 多行注释
let x = 10// Here, x is a variable printfn x
输出:
10
F#多行注释【F#注释】F#多行注释用于注释多行代码。它的周围是带有astrick(*)的打开和关闭括号。让我们看一下F#中的多行注释示例
(* lets declare and print variable in F# Here x is a integer variable*)let x = 20printfn "%d" x
输出:
20