Skip to content

Other Languages

Structured programming ideas underpin all modern imperative programming languages. Focus on the concepts, and once you master these ideas with one language you will be able to apply the same thinking to others.

So how similar are other languages?

If we consider a language like Python, you will find it has basically the same control flow mechanisms:

Notice that not only are the same kind of structures present. Most of them even use the same keywords! Languages generally spell if in the same way. This just further emphasises that if you can think through a program at a pseudocode level, then the logic will generally translate between languages.