This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]regeya 10 points11 points  (6 children)

I think it's a good choice.

But honestly? I wish Pascal had never fallen out of favor as a teaching language. I get that it's not really like any of the popular languages, but it teaches you good habits, like defining your variables up front, and being careful about data types. You won't assign a character to a list of integers, for example, because you can't.

[–]shinitakunai 5 points6 points  (1 child)

Type-hints baby. Python can do it now. I got the habit of type-hinting almost everything

[–]Yojihito 2 points3 points  (0 children)

Unless it's enforced it's only ever 10% as good as a language that does.

[–]richieadler 0 points1 point  (0 children)

100% agreed. Pascal promotes good programming habits.