example programs tests
This commit is contained in:
13
examples/inheritance.simple
Normal file
13
examples/inheritance.simple
Normal file
@ -0,0 +1,13 @@
|
||||
object shape:
|
||||
size = 1
|
||||
|
||||
def area:
|
||||
size
|
||||
|
||||
object square(parent=shape):
|
||||
def area:
|
||||
size * size
|
||||
|
||||
object circle(parent=shape):
|
||||
def area:
|
||||
3.1415 * size * size
|
||||
Reference in New Issue
Block a user