Componentes.Terceros.jvcl/internal/3.36/1/examples/JvInterpreterDemos/JvInterpreterTest/samples/sample - global constants and variables (UUnit1).pas
2009-03-04 12:31:55 +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.