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