跳到主要内容

?

? 用于条件表达式(三元表达式):cond ? thenExpr : elseExpr

fn sign { it > 0 ? 1 : it < 0 ? -1 : 0 }