Short note about programing language performance

Programming languages aren't slower or faster. The implementations of them are.

Strongly typed variables will always be faster than duck typing.

Manual memory management will always be faster than garbage collection.

Comments