summaryrefslogtreecommitdiff
path: root/testcode/hello.pas
diff options
context:
space:
mode:
Diffstat (limited to 'testcode/hello.pas')
-rw-r--r--testcode/hello.pas9
1 files changed, 9 insertions, 0 deletions
diff --git a/testcode/hello.pas b/testcode/hello.pas
new file mode 100644
index 0000000..40c6005
--- /dev/null
+++ b/testcode/hello.pas
@@ -0,0 +1,9 @@
+{ Hello World in Pascal, for testing SLOCCount.
+ This is multi-line, testing curly braces. }
+(* This is another multi-line comment.
+ Here's another line. *)
+program Hello;
+begin (* Main *)
+ writeln ('Hello, world.')
+end. (* Main *)
+