Path: utzoo!attcan!uunet!tektronix!tekcae!kurtk From: kurtk@tekcae.TEK.COM (Kurt Krueger) Newsgroups: comp.lang.fortran Subject: Re: Assigned GOTO Message-ID: <1821@tekcae.TEK.COM> Date: 1 Jul 88 16:23:43 GMT References: <2742@utastro.UUCP> <20008@beta.UUCP> <224@raunvis.UUCP> <1544@microsoft.UUCP> <12215@mimsy.UUCP> Reply-To: kurtk@tekcae.UUCP (Kurt Krueger) Organization: Tektronix, Inc., Beaverton, OR. Lines: 5 Another mis-use of assigned GOTO takes into account that most implementations use the actual address of the label and don't bother to check against the list of possible branches that is required for the GOTO LABEL, (100,300) statement. If you pass LABEL to a subroutine or put it in common, you can branch from one subroutine directly into another. (!)