lazarus/components/lazdebuggergdbmi/test/TestApps/EnvPrg.pas
martin 671155bdde Debugger: test, move to package
git-svn-id: trunk@44482 -
2014-03-20 21:32:41 +00:00

14 lines
163 B
ObjectPascal

program EnvPrg;
uses sysutils;
var
s: String;
begin
s := GetEnvironmentVariable('ETEST1');
if s = 'ab123c' then
writeln(1)
else
writeln(2);
end.