Pārlūkot izejas kodu

+ Initial implementation

michael 27 gadi atpakaļ
vecāks
revīzija
ca967c4d0d
1 mainītis faili ar 10 papildinājumiem un 0 dzēšanām
  1. 10 0
      docs/linuxex/ex56.pp

+ 10 - 0
docs/linuxex/ex56.pp

@@ -0,0 +1,10 @@
+program example56;
+
+uses linux;
+
+{ Program to demonstrate the Shell function }
+
+begin
+  writeln ('Output of ls -l *.pp');
+  Shell ('ls -l *.pp');
+end.