mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 04:24:43 +00:00
9 lines
131 B
Python
9 lines
131 B
Python
C = Class { .x = Int; .y = Int }
|
|
C.
|
|
x = "aa"
|
|
|
|
_: Str = C.x
|
|
_ = C.y # ERR
|
|
c = C.new({.x = 1; .y = 2})
|
|
_: Int = c.x
|
|
_: Int = c.y
|