Interesting discussion of `if x in [y, z]` vs `if x in {y, z}` in Python: http://t.co/Z4oRp94kB2
miniblog.
Related Posts
Are there any developer experience advantages for `x := 1` over `let x = 1`?
A `let` keyword probably improves parsing error behaviour, and makes declarations more visible.
:= is more concise though.