Hacker News new | ask | show | jobs
by sgsjchs 246 days ago
> I still don't understand this decision.

Variable declaration `T v;` means "declare `v` such that expression `v` has type `T`". Variable declaration `T *p` means declare `p` such that the expression `*p` has type `T`". etc.

1 comments

Nice explanation!