In Go I can declare a new EMPTY slice using:
players := make([]Player, 0, len(player_list))
How to do this in Rust?
I tried with:
players = vec!(Player; 0; player_list.len())
but this is wrong because I only need to declare an empty array, not new one with one Player already inside.
How to?