summaryrefslogtreecommitdiff
path: root/extras/tiopf/demos/Common/Constants.pas
blob: 9820ae5e37bfd62e27ab0e43db54a180906733e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
unit Constants;

{$mode objfpc}{$H+}

interface

const
  cNameMissing = 'Please enter a name';
  cAgeOutofRange = 'Please enter a valid age between 1 - 100';


implementation

end.