@@ -0,0 +1,5 @@
+program write_it;
+var x:real;
+begin
+write(x:5.2);
+end.
@@ -0,0 +1,22 @@
+Type TParent = Object
+ Procedure SomeProc;
+ end;
+
+ TChild = Object(TParent)
+ Procedure SomeProc; virtual;
+ Procedure TParent.someproc;
+ Begin
+ procedure TChild.Someproc;
+Begin