Hacker News new | ask | show | jobs
by __henil 1959 days ago
I find specifying type on the left side of assignment operator much easier to interpret.

> let x: Vec<u8> = Vec::new();

1 comments

let x: Vec<u8> = vec![];