Дмитрий Ярушин Asked: 2020-12-13 00:13:26 +0000 UTC 请解释一下表达方式。F# 1 请解释一下表达方式。F# let rec fact n = iff ((=) n 1) 1 ((*) n (fact ((-) n 1)));; f#