Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 5/3/83; site ukc.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxl!houxm!hogpc!houti!ariel!vax135!ukc!trh From: trh@ukc.UUCP Newsgroups: net.lang Subject: f77 syntax Message-ID: <4199@ukc.UUCP> Date: Thu, 24-May-84 13:49:42 EDT Article-I.D.: ukc.4199 Posted: Thu May 24 13:49:42 1984 Date-Received: Fri, 18-May-84 07:17:03 EDT Organization: Computing Lab. Kent University, England Lines: 33 > > If you want a good one, how about > > INTEGER E7 > DO 10 E7 = 1, 10, 1 > > Doesn't work. Line numbers can't be over 99999. > > -Ron > > Come on at least look up the Fortran Standard before submitting things like this. Fortran labels are not integers. Thus statements like GOTO IJK are illegal. The above DO loop is unambiguous and perfectly legal Fortran. The label associated with the loop is 10, the control variable is named E7 and is of type integer. No problems even for archaic old Fortran !! Tim Hopkins, Computing Laboratory, University of Kent, Canterbury CT2 7NF Kent U.K. { trh@ukc.UUCP }