mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
6 lines
145 B
Python
6 lines
145 B
Python
C = Class { .x = Int }
|
|
C.
|
|
foo(self) = self.x
|
|
bar(self) =
|
|
if self.does_not_exist(), do: # ERR
|
|
discard self.foo() # OK
|