this post was submitted on 23 Oct 2023
72 points (91.9% liked)

retrocomputing

4020 readers
1 users here now

Discussions on vintage and retrocomputing

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 10 months ago (2 children)

People would learn bad habits.

For example, due to parameter passing often being done via the zero page, recursion is unnecessarily hard on the 6502, whereas one could argue that recursion is one of the major skills to master for any programmer.

[–] [email protected] 3 points 10 months ago (1 children)

@irdc @feoh All programmers need to learn recursion and fully understand it so when they encounter it in the wild they can properly analyze what it is doing and replace it with non-recursive code.

[–] [email protected] 2 points 10 months ago

A non-recursive recursive descent parser isn’t any easier to reason about.

[–] [email protected] 1 points 10 months ago

One could, but I would argue that this idea pre-supposed a very ascetic class of programmer, and that depending on one's goals in learning how to program, recursion can be a useful concept but saying it should be the one litmus test for any learning platforms seems highly questionable to me.