pkg.go.dev/io/ioutil says “As of Go 1.16, the same functionality is now provided by package io or package os, and those implementations should be preferred in new code.”
Does this mean?: using directly package io or os is enough and better than ioutil. so do not use ioutil.
If so, why isn’t this package removed from standard go library? I know Go aims simplicity. Wouldn’t it be better if the non-recommended package was removed?
If i wrong, excuse me
Note: I am newbie about programming. Thanks.