Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/5/84; site nlm-vax.ARPA Path: utzoo!watmath!clyde!bonnie!akgua!gatech!seismo!brl-tgr!nlm-mcs!nlm-vax!randy From: randy@nlm-vax.ARPA (Rand Huntzinger) Newsgroups: net.micro.atari Subject: Bug in ST Basic Message-ID: <1220@nlm-vax.ARPA> Date: Mon, 25-Nov-85 15:16:54 EST Article-I.D.: nlm-vax.1220 Posted: Mon Nov 25 15:16:54 1985 Date-Received: Wed, 27-Nov-85 05:26:28 EST Distribution: net Organization: NLM/LHNCBC, Bethesda, Md. Lines: 14 It appears that LINE INPUT from a file in ST Basic ignores the first byte of a file. On my system, this program types out all the input file except for its first character, and bombs on an end of file error at the end of the file. 10 OPEN "I",1,"INPUT.FIL" 20 WHILE NOT EOF(1) 30 LINE INPUT #1,X$ 40 PRINT X$ 50 WEND 60 CLOSE 1 70 END Randy