mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 04:24:43 +00:00
4 lines
93 B
Python
4 lines
93 B
Python
class Array(list):
|
|
def push(self, value):
|
|
self.append(value)
|
|
return self
|