summaryrefslogtreecommitdiff
path: root/extras/tiopf/demos/Common/Constants.pas
diff options
context:
space:
mode:
Diffstat (limited to 'extras/tiopf/demos/Common/Constants.pas')
-rw-r--r--extras/tiopf/demos/Common/Constants.pas14
1 files changed, 14 insertions, 0 deletions
diff --git a/extras/tiopf/demos/Common/Constants.pas b/extras/tiopf/demos/Common/Constants.pas
new file mode 100644
index 00000000..6c93719d
--- /dev/null
+++ b/extras/tiopf/demos/Common/Constants.pas
@@ -0,0 +1,14 @@
+unit Constants;
+
+{$mode objfpc}{$H+}
+
+interface
+
+const
+ cNameMissing = 'Please enter a name';
+ cAgeOutofRange = 'Please enter a valid age';
+
+
+implementation
+
+end.