mirror of
https://github.com/erg-lang/erg.git
synced 2025-10-01 05:11:09 +00:00
951 B
951 B
错误恢复建议(尚未实现)
1 or 2
,1 and 2
=>{1, 2}
?U = Inherit T
=> 非类类型不能被继承,或者U = Class T
?Int and Str
=> 不允许多重继承,或者Int or Str
?: [1, 2]
=>: {1, 2}
?: [Int, 2]
=>: [Int; 2]
?[Int; Str]
=>(Int, Str)
(Tuple) 还是[Int: Str]
(Dict)?{x: Int}
=>{x = Int}
?{x = Int}!
=>{x = Int!}
?ref! immut_expr
=>ref! !immut_expr
?