this post was submitted on 23 Oct 2023
69 points (90.6% liked)

retrocomputing

4112 readers
4 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
[–] irdc@derp.foo 7 points 1 year ago (1 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.

[–] richard_merren@mastodon.social 3 points 1 year 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.

[–] irdc@derp.foo 2 points 1 year ago

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