<div dir="ltr"><div>Hi Chris, would you mind to add this syntactic form `(expr -> var)` to alternative syntax section, with the same semantics as `(expr as var)`. It seems to me that I've seen this form previously in some thread (can't find where), but it does not appear in alt. syntax section. As for me this form has several benefits:<br>    1. Currently it is a SyntaxError<br>Really there exist some intersection with syntax to annotate function return type, but it has much smaller impact than `as` variant.<br>    2. This form looks It looks as readable (also the expression comes first, which appeals to me) as the 'as' variant.<br>    3. It is clearly distinguishable from the usual assignment statement (which also appeals to me)<br>Suppose someday someone will want to have a type hint on a local variable (I think sublocal are safer on this part), then:<br>```<br></div>while (x: int := counter):<br>do_some_stuff<br><div><div><div><div><div><div><div>```<br>vs<br>```<br>while (counter -> x: int):<br>    do_some_stuff<br>```<br>Maybe it is too subjective, but the second form looks better for me. taking in all the аdvantages of the `as` form. Also this '->' form can be extended to some sort of tuple unpacking. I don't think that tuple unpacking is a good example, but nevertheless:) And 
<span id="gmail-result_box" class="gmail-short_text" lang="en"><span class="gmail-">will make further attempts to introduce `
<span id="gmail-result_box" class="gmail-short_text" lang="en"><span class="gmail-">+:=</span></span>` impossible.<br><br></span></span></div><div><span id="gmail-result_box" class="gmail-short_text" lang="en"><span class="gmail-">With kind regards,<br></span></span></div><div><span id="gmail-result_box" class="gmail-short_text" lang="en"><span class="gmail-">-gdg </span></span>

<br></div></div></div></div></div></div></div></div>