2020-08-18
阅读量:
1405
M函数基本表达式
M函数的注释:
单行注释符为//
多行注释符为/*…..*/
M函数基本表达式:
let…in…结构:
let用于封装计算结果, 并为计算结果命名。
in用于显示结果
例:
let
Source = Text.Proper("hello world")
in
Source
解说: 通过let语句将Text.Proper(“hello world”)函数的计算结
果封装到名叫Source的变量中, 再通过in语句显示Source变
量的内容“hello world” 。






评论(0)


暂无数据