Tagged Questions
The algol68 tag has no wiki summary.
5
votes
3answers
638 views
Python style iterators in C
The "yield" statement in python allows simple iteration from a procedure, and it also means that sequences don't need to be pre-calculated AND stored in a array of "arbitrary" size.
Is there a there ...
2
votes
4answers
310 views
Naming: BEGIN ~ END vs LIVE ~ EVIL block structured languages
Curly Bracket languages are well known: (wikipedia)
Other programming languages can have BEGIN ~ END vs LIVE ~ EVIL block structuring. eg
A) BEGIN ~ END, DO ~ END, IF ~ END IF - examples:
Ada, ...