mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-07 21:25:31 +00:00
9 lines
174 B
Python
9 lines
174 B
Python
private = "this is a private variable"
|
|
.public = "this is a public variable"
|
|
|
|
.C = Class {.x = Int}
|
|
.C.
|
|
x = 1
|
|
.C|<: Eq|.
|
|
`==` self, other =
|
|
self.x == other.x
|