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=unavailable autolearn_force=no version=3.4.4 Path: border1.nntp.dca3.giganews.com!backlog3.nntp.dca3.giganews.com!border3.nntp.dca.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!news-in-01.newsfeed.easynews.com!easynews!core-easynews-01!easynews.com!en-nntp-11.dc1.easynews.com.POSTED!not-for-mail From: agent@drrob1.com Newsgroups: comp.lang.ada Subject: array question Message-ID: <2migf9h07j7ll0eqk7oh3e64m1e0lv3r5r@4ax.com> User-Agent: ForteAgent/7.20.32.1218 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@easynews.com Organization: Forte Inc. http://www.forteinc.com/apn/ X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly. Date: Sun, 09 Feb 2014 22:49:39 -0500 X-Received-Bytes: 1129 X-Original-Bytes: 1197 Xref: number.nntp.dca.giganews.com comp.lang.ada:184765 Date: 2014-02-09T22:49:39-05:00 List-Id: I would like to define a array that can use a character as its index. type FSATyp is (Delim, Op, Dgt, AllElse); FsaArray : ARRAY Character range ('' .. Character'Val(255)) OF FSATyp; I'm getting an error saying that I'm missing '(' and extra ')' is ignored. It is also saying missing => and that strings are delimited by double quotes. I'm sure what I want is possible, but I seem to have the syntax wrong. Any help would be appreciated.