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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,854fe8372d0921a,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-12-20 04:08:55 PST From: "Ratson Janiv" Newsgroups: comp.lang.ada Subject: array for all tasks Date: Sat, 20 Dec 2003 14:00:06 +0200 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 NNTP-Posting-Host: 82-166-172-119.barak.net.il X-Original-NNTP-Posting-Host: 82-166-172-119.barak.net.il Message-ID: <3fe43a4c$1@news.barak.net.il> X-Trace: news.barak.net.il 1071921740 82-166-172-119.barak.net.il (20 Dec 2003 14:02:20 +0300) X-Original-Trace: 20 Dec 2003 14:02:20 +0300, 82-166-172-119.barak.net.il Path: archiver1.google.com!news2.google.com!newsfeed2.dallas1.level3.net!news.level3.com!news-out.visi.com!petbe.visi.com!nntp.abs.net!ash.uu.net!news.splitrock.net!nntp02.mcleodusa.net!dimaggio.newszilla.com!sinatra.newszilla.com!news.barak.net.il!not-for-mail Xref: archiver1.google.com comp.lang.ada:3622 Date: 2003-12-20T14:00:06+02:00 List-Id: Hi, I have a task with 3entries. The first entry set an array size: accept Start(Array_Size:Natural); declare Arr_Checks : Arr2(1..Array_Size); begin ... The other 2 tasks need to use this array. how do I implement that, so the other tasks will also know and may use the array? 10x?