https://github.com/nomad-software/script
A toy programming language
https://github.com/nomad-software/script
interpreter language
Last synced: about 1 month ago
JSON representation
A toy programming language
- Host: GitHub
- URL: https://github.com/nomad-software/script
- Owner: nomad-software
- License: mit
- Created: 2017-03-15T19:25:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-24T16:59:26.000Z (about 9 years ago)
- Last Synced: 2025-03-02T16:34:44.807Z (over 1 year ago)
- Topics: interpreter, language
- Language: Go
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Script
**A toy scripting language**
---
The code contained in this repository is a learning exercise on programming a
[scripting language](https://en.wikipedia.org/wiki/Scripting_language) [interpreter](https://en.wikipedia.org/wiki/Interpreter_(computing)). This is very much a work in progress.
## Resources
* [Lexical Scanning in Go by Rob Pike](https://www.youtube.com/watch?v=HxaD_trXwRE&t=2367s)
* [Writing An Interpreter In Go by Thorsten Ball](https://interpreterbook.com/)