Data update
This commit is contained in:
parent
35bcdeebf8
commit
74c69a0df6
2427 changed files with 31826 additions and 3468 deletions
|
|
@ -2,8 +2,8 @@ import extensions;
|
|||
|
||||
class Point
|
||||
{
|
||||
prop int X;
|
||||
prop int Y;
|
||||
int X : prop;
|
||||
int Y : prop;
|
||||
|
||||
constructor new(int x, int y)
|
||||
{
|
||||
|
|
@ -19,7 +19,7 @@ class Point
|
|||
|
||||
class Circle : Point
|
||||
{
|
||||
prop int R;
|
||||
int R : prop;
|
||||
|
||||
constructor new()
|
||||
<= new(0);
|
||||
|
|
@ -28,7 +28,7 @@ class Circle : Point
|
|||
<= new(0, 0, r);
|
||||
|
||||
constructor new(int x, int y, int r)
|
||||
<= new(x, y)
|
||||
<= super new(x, y)
|
||||
{
|
||||
R := r
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue