소스 검색

+ 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.