Componentes.Terceros.jvcl/official/3.39/examples/JvInterpreterDemos/JvInterpreterTest/samples/sample - global constants and variables (UUnit1).pas
2010-01-18 16:55:50 +00:00

18 lines
236 B
ObjectPascal

unit UUnit1;
uses UUnit2, UUnit3;
{const
UConst = 'UUnit1.UConst';}
var
UVar: TStringList;
function main: string;
begin
//Result := UConst;
//Result := UUnit2.UConst;
Result := UUnit2.UFunction;
end;
end.