Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 if (condition) then Statement 1 , statement 2, ... else statement 1, statement 2,... ; 在 SML 编程语言中。我不能使用简单的空格或,。如果这可能的话,有什么建议吗?注意:我不是说嵌套 if else。不过很清楚。
您可以使用该构造(expr1; expr2; ... ; exprn)按顺序执行多个表达式。所以:
(expr1; expr2; ... ; exprn)
if condition then ( expression1; expression2 ) else ( expression1; expression2 )