Research what needs to be done to implement List Comprehension
We could start by looking at how list comprehensions are implemented in existing languages such as python, perl and scala. I think CPython is a good place to start because Python's list comprehension syntax is quite clean, and it is written in C which should give us pointers on how to implement it in AGE.
According to this and this post on stackoverflow, list comprehensions are converted directly to bytecode instead of being converted to C as an intermediate step. Perhaps this could give us some indication of how to proceed?
This issue is stale because it has been open 45 days with no activity. Remove "Abondoned" label or comment or this will be closed in 7 days.
List comprehension was implemented and added by PR #1610 .