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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,a4cc6fdc99d3fe2a,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-05-26 07:30:11 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!uio.no!news.netg.se!dd.chalmers.se!not-for-mail From: f97stdi@dd.chalmers.se (Staffan Dittmer) Newsgroups: comp.lang.ada Subject: package body functionality Date: 26 May 2001 14:28:47 GMT Organization: Chalmers University of Technology, Sweden Message-ID: <9eoeiv$h8$1@eol.dd.chalmers.se> NNTP-Posting-Host: orchaldor.dd.chalmers.se Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Newsreader: knews 1.0b.1 Xref: archiver1.google.com comp.lang.ada:7800 Date: 2001-05-26T14:28:47+00:00 List-Id: the question might be a bit obscure but considering the two package bodies below package body A is variable: some_type:=call_some_function_outside_A; end A; package body B is variable: some_type; begin variable:=call_some_function_outside_B; end B; I know that in B the variable will be assigned every time a program using the package is run, but is this also true for A, or will the variable in this case only be assigned at compile time ? saturdays usually makes me confused... / Staffan Dittmer