There are no absolutes. But not safe can still be safer.
I wrote some code for the card game bridge, and had a very annoying error where I switched the order of function parameters of an enum for suit [0 to 3] with an enum for hand [also 0 to 3]. I was glad to move to C++ where I could more easily set things up so that the compiler wouldn't let me do that again.
I wrote some code for the card game bridge, and had a very annoying error where I switched the order of function parameters of an enum for suit [0 to 3] with an enum for hand [also 0 to 3]. I was glad to move to C++ where I could more easily set things up so that the compiler wouldn't let me do that again.
Comment