https://github.com/wisepythagoras/turing
An experimental programming language
https://github.com/wisepythagoras/turing
Last synced: 7 months ago
JSON representation
An experimental programming language
- Host: GitHub
- URL: https://github.com/wisepythagoras/turing
- Owner: wisepythagoras
- License: gpl-3.0
- Created: 2023-08-04T23:34:33.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T21:08:38.000Z (12 months ago)
- Last Synced: 2024-10-24T19:39:22.544Z (12 months ago)
- Language: Zig
- Size: 198 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Loom
Loom is an experimental programming language with its own bytecode and virtual machine. You can run a Loom script directly or compile it down to bytecode. It's under heavy development and in no way near a stable release.
#### Usage
``` sh
# To run a script
loom path/to/script.loom# To disassemble the produced bytecode and run the code
loom path/to/script.loom -d# To output a binary file (raw bytecode)
loom path/to/script.loom -b
# This will produce "script.lb"# To run a binary file
loom path/to/script.lb
```### License
Although the source code herein is licensed under GNU GPL v3, I prohibit the use of the code in this repository for the purposes of training AI/ML models.