Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hscells/zapper-lang
Experimental Programming Language
https://github.com/hscells/zapper-lang
Last synced: 7 days ago
JSON representation
Experimental Programming Language
- Host: GitHub
- URL: https://github.com/hscells/zapper-lang
- Owner: hscells
- License: mit
- Created: 2015-07-24T06:14:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-20T05:49:55.000Z (almost 9 years ago)
- Last Synced: 2024-04-30T10:27:06.097Z (7 months ago)
- Language: C
- Size: 102 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zapper-lang
Zapper is an experimental programming language, mainly for me to learn about programming theory. It is a LISP written partly in C and itself.At it's heart Zapper aims to be a general purpose language, but also tries to stay functional by not allowing for mutable objects and provides interfaces for functional-style programming.
At the moment, there is a basic structure for the language, and there are examples of actual code in the ```examples/``` folder. If you would like to try it out, it can currently be built on Mac and Linux (untested) systems, as well as possibly Windows (also untested) by running the ```make``` command. Binaries built for Mac are available on [the releases list](https://github.com/hscells/zapper-lang/releases).
If you use the Atom editor, there is a syntax highlighter available [here](https://atom.io/packages/language-zapper).
At the moment the following things still need to be implemented
(in order of what I think is important):- ~~Parser & Tokeniser~~
- ~~Objects~~ & Classes
- Core Language
- Package Support
- ~~REPL~~
- VM
- Garbage Collection## Running Zapper
```zapper``` by itself will invoke the Zapper REPL.
```zapper file.zap``` will attempt to run file.zap