Hacker News new | ask | show | jobs
by SuchAnonMuchWow 1931 days ago
It doesn't start from 0: there was some pattern matching before:

(a, b, c, d) = range(4)

2 comments

Now we can do

(a, b, c, d, e, f, g, h) = range(8)

This is destructuring.
...which is a simple form of pattern matching.