carl 23 years ago
parent
commit
aed84190ca
1 changed files with 20 additions and 0 deletions
  1. 20 0
      tests/webtbs/tw2072.pp

+ 20 - 0
tests/webtbs/tw2072.pp

@@ -0,0 +1,20 @@
+{ Source provided for Free Pascal Bug Report 2072 }
+{ Submitted by "Bill Rayer" on  2002-08-09 }
+{ e-mail: [email protected] }
+program tw2072;
+
+
+
+(*$ifdef FPC*)
+const name = 'FPC';
+(*$else *)(*Hello*)
+const name = 'Delphi';
+(*$endif *)
+
+
+
+begin
+  writeln ('Hello ', name);
+end.
+
+