瀏覽代碼

+ Initial implementation

michael 27 年之前
父節點
當前提交
ca967c4d0d
共有 1 個文件被更改,包括 10 次插入0 次删除
  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.