MODULE Test;
+IMPORT Files, Out;
+
VAR
- i : SHORTINT;
- s : SET;
+ f : Files.File;
+ r : Files.Rider;
+ len : LONGINT;
+ x : POINTER TO ARRAY OF CHAR;
BEGIN
- i := SHORT(12345);
+ f := Files.Old("Test.obn");
+ ASSERT(f # NIL);
+ Files.Set(r, f, 0);
+
+ len := Files.Length(f);
+ NEW(x, len + 1);
+
+ Files.ReadBytes(r, x, len);
+ Out.String(x^); Out.Ln;
END Test.