Re: vote on assignments as expressions
"Mark Hahn" <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.user |
|---|---|
| Message-ID | <[email protected]> |
"Laurent Dube" <[email protected]> wrote > Here is also a nice side effect at the console: > > >>> b=2 > >>> a=b # assign > >>> a # show > 2 > >>> c:=b # assign and show > 2 > > For these 2 reasons, I support "a:=b" as expression assignment, with 2 votes. Current Prothon: >>> a=1 1 >>>