Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!tut.cis.ohio-state.edu!giza.cis.ohio-state.edu!msriram From: msriram@giza.cis.ohio-state.edu (M G SriRam) Newsgroups: comp.sys.mac.hypercard Subject: Re: arrays/subscripts allowed? Message-ID: <97791@tut.cis.ohio-state.edu> Date: 18 Mar 91 15:39:53 GMT References: <1991Mar16.102643.2883@desire.wright.edu> Sender: news@tut.cis.ohio-state.edu Organization: Ohio State Computer Science Lines: 15 another way to fake arrays is to use the do command. eg, suppose you want to initialize 10 variables of the form X1.. X10 to 0. you could do the folowing: repeat with n = 1 to 10 do "put 0 into X"&n end repeat the X(*) or X[*] sytnax for arrays cannot be achieved because the only symbols allowed in variable names are letters, digits and the underscore. hope this is useful. sriram