Browse Source

+ Initial implementation

michael 25 years ago
parent
commit
d5cb06237a
1 changed files with 12 additions and 0 deletions
  1. 12 0
      docs/refex/ex97.pp

+ 12 - 0
docs/refex/ex97.pp

@@ -0,0 +1,12 @@
+Program Example97;
+
+{$H+}
+
+{ Program to demonstrate the StringOfChar function. }
+
+Var S : String;
+
+begin
+  S:=StringOfChar(' ',40)+'Aligned at column 41.';
+  Writeln(s);
+end.