添加了一些基本类型介绍

This commit is contained in:
Sanchime 2022-02-20 13:27:32 +08:00
parent d68697b576
commit a6b27c3f64
1 changed files with 20 additions and 1 deletions

View File

@ -28,4 +28,23 @@ let b = 3.1415926
let c = 'a'
// sstring
let s = "abc"
let s = "abc"
// F#还提供了一些集合类型,比如列表,
// 列表: [1; 2; 3; 4]或者['a'; 'b'; 'c'; 'd']
// 列表是一个有序的、不可变的同类型元素系列,
let list = ["第一个元素"; "第二个元素"; ""]
printfn "%A" list
// 我们将其输出,结果应该为["第一个元素"; "第二个元素"; ""]
// 数组与列表类似, 有序的同元素系列,
// 线
let array = [| "数组第一个元素"; "数组第二个元素" |]
printfn "%A" array
// 当然也有一些表达某种特定结构的类型,比如元组, 记录, 结构, 类, 接口, 枚举,