Path: utzoo!utgpu!utcsri!jarvis.csri.toronto.edu!dgp.toronto.edu!flaps From: flaps@dgp.toronto.edu (Alan J Rosenthal) Newsgroups: comp.lang.c Subject: Re: The D Programming Language Message-ID: <1988Mar2.224813.4618@jarvis.csri.toronto.edu> Date: 3 Mar 88 03:48:12 GMT Article-I.D.: jarvis.1988Mar2.224813.4618 Posted: Wed Mar 2 22:48:12 1988 References: <105@logi-dc.UUCP> Organization: University of Toronto Lines: 12 In article <105@logi-dc.UUCP> joe@logi-dc.UUCP (Joe Dzikiewicz) writes: > ptr_to_a => a_ptr; > >This would be equivalent to: > > ptr_to_a = ptr_to_a->a_ptr; the correct operator is probably '->=' rather than '=>', by analogy with '+=' and friends. (this wouldn't even change the meaning of "a-->=b"...) -- If you had eternal life, would you be able to say all the integers?