https://github.com/voidwyrm-2/npscript
A PostScript implementation
https://github.com/voidwyrm-2/npscript
interpreted-programming-language nim postscript postscript-interpreter programming-language
Last synced: 4 months ago
JSON representation
A PostScript implementation
- Host: GitHub
- URL: https://github.com/voidwyrm-2/npscript
- Owner: voidwyrm-2
- License: apache-2.0
- Created: 2025-09-02T01:23:47.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-09-02T04:38:40.000Z (4 months ago)
- Last Synced: 2025-09-02T06:14:44.530Z (4 months ago)
- Topics: interpreted-programming-language, nim, postscript, postscript-interpreter, programming-language
- Language: Nim
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# NPScript
A PostScript implementation with a focus on console applications.
## Installation
### Prebuilt binaries
Prebuilt binaries are found in the [releases](https://github.com/voidwyrm-2/npscript/releases/latest).
### Compiling locally
**Prerequisites**
- Unix system or similar (compiling on Windows is not currently supported)
- Git, which should be on your system already
- Nim, which can be downloaded from https://nim-lang.org/install.html
- Nimble, which should have come bundled with Nim
```sh
git clone https://github.com/voidwyrm-2/npscript
cd npscript
nimble install noise
chmod +x build.sh
./build.sh
./out/npscript -v
./out/npscript --repl
```
Addtionally, if you want to cross-compile, you'll need
- Zig, which can be downloaded from https://ziglang.org/download
```sh
git clone https://github.com/voidwyrm-2/npscript
cd npscript
nimble install zigcc
chmod +x build.sh
./build.sh all
```