iff cond {} 等价于 if is_true(cond) {}
iff cond {}
if is_true(cond) {}
% 三值逻辑 if % 二值逻辑 iff a { }
for a in b { }
for { }
while a > 0 { }
等价于 while true
while true
loop { return true; }
switch { a == 1, "1" a == 2, "2" }
match a { }
do { a <- b }
← 匿名函数 作用域 →