if
示例:
min = x < y ? (x < z ? x : z) : (y < z ? y : z)
min = if x < y x < z ? x : z else y < z ? y : z end
受 'Ruby Style Guide' 启发