|
|
|
|
|
by faho
1327 days ago
|
|
The idea behind this series of posts is to see how much of python, concretely, is syntactic sugar and how much is necessary. How much could you do with e.g. doing macro transformation on top of a minimal core? The last post before this was titled: "MVPy: Minimum Viable Python". So, since python doesn't have goto, you can't replace while with an if with two gotos (without adding a goto to the language). You can replace an `if` with a while tho, easily. |
|