This commit is contained in:
qarnax801
2022-08-25 16:23:21 +01:00
parent ca9392d4ac
commit 12713aa6b9

View File

@@ -163,7 +163,7 @@ For different purposes, we can create different functions to make performing tas
The big advantage of making a function is to be able to quickly and easily use it without having to write the entire set of instructions over and over again, because over time you'll see that some tasks have to be performed hundreds of times in an applications, and to make all of that easier, functions are the way to go.
## Pseudo-code vs. Programming languages
# Pseudo-code vs. Programming languages
Now that we covered the essentials of what an algorithm is and how to break down tasks into instructions or “pseudo-code”, lets have a little taste of programming languages, by comparing an algorithm (written in English) to how its written in two different programming languages.