What I find with static languages is that you are forced to write more code to work around the static parts. You need a method to deal with type A. You need another method to deal with type B.
Then you are doing it wrong. Either you are not using an expressive language as this article recommends (no structural typing), or your data structures and functions are not properly factored.
What I find with static
What I find with static languages is that you are forced to write more code to work around the static parts. You need a method to deal with type A. You need another method to deal with type B.
Then you are doing it wrong. Either you are not using an expressive language as this article recommends (no structural typing), or your data structures and functions are not properly factored.