Hacking Python Internals: Learn To Add A New Keyword To The Python Language
Understand how Python works at its core and hack its internals to add a new keyword

Python is an open-source programming language.
This means that we can alter its code and propose new changes (in the form of Python Enhancement Proposals) to be reviewed by the open-source community working on it.
In this tutorial, we will be adding a new keyword called moveon to the Python language.
This will be similar to the continue keyword in its functionality.
Let’s start!

