Interp - an Interpreted Programming Language Pt.1
Hello there! In this series we are going to develop an interpreted programming language, Interp.
If you want to make your own language based on this series, you are welcome to do so!
Goals
The language should be:
- Simple.
- Easy to learn.
- Dynamic. Duck-typing.
- Not object-oriented. No classes.
Hello, world
Hello world would look something like this:
Print("Hello, world!")
Repo
The repository can be found here.
Next Up
Execute Interp online at the Webshell.