import from .zip file

This commit is contained in:
Michael Wolf
2012-05-31 16:45:42 -05:00
commit 926705cb97
55 changed files with 291819 additions and 0 deletions

12
put_stat.adb Normal file
View File

@@ -0,0 +1,12 @@
with TEXT_IO;
with DEVELOPER_PARAMETERS; use DEVELOPER_PARAMETERS;
procedure PUT_STAT(S : STRING) is
begin
if TEXT_IO.IS_OPEN(STATS) then
TEXT_IO.PUT_LINE(STATS, S);
end if;
end PUT_STAT;