From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,146e39fd3921c79f,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!newsfeed00.sul.t-online.de!newsfeed01.sul.t-online.de!t-online.de!feed.news.tiscali.de!news.tiscali.de!not-for-mail From: Andi Newsgroups: comp.lang.ada Subject: binary size (gnat+win console) Date: Sun, 01 Aug 2004 19:45:27 +0200 Organization: Tiscali Germany Message-ID: NNTP-Posting-Host: p83.129.54.165.tisdip.tiscali.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ulysses.news.tiscali.de 1091382328 88448 83.129.54.165 (1 Aug 2004 17:45:28 GMT) X-Complaints-To: abuse@tiscali.de NNTP-Posting-Date: Sun, 1 Aug 2004 17:45:28 +0000 (UTC) User-Agent: Mozilla/5.0 (root) X-Accept-Language: de Xref: g2news1.google.com comp.lang.ada:2483 Date: 2004-08-01T19:45:27+02:00 List-Id: hello, a simple "hello-world" binary takes 219kb after building !? there are ways for optimizations ?? best regards --- with Ada.Text_Io; use Ada.Text_Io; procedure Hello is begin Put_Line("Hello World"); end Hello; ---