Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ergeibimed/mouse_lang_interpreter
https://github.com/ergeibimed/mouse_lang_interpreter
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ergeibimed/mouse_lang_interpreter
- Owner: ErgeibiMed
- License: mit
- Created: 2024-09-01T17:17:23.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T13:02:35.000Z (4 months ago)
- Last Synced: 2024-09-05T15:31:51.730Z (4 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# An Interpreter for The Mouse programming language
## Description
Mouse is an interpreted stack orientated language designed by Peter Grogono around 1975.
It was designed to be a small but powerful language for microcomputers, similar to Forth,
but much simpler. One obvious difference to Forth is that Mouse interprets a stream of characters
most of which are only a single character and it relies more on variables rather than rearranging
the stack as much.- Read more about [mouse the programming language](https://en.wikipedia.org/wiki/Mouse_(programming_language))
- [The Mouse Programming Language on CP/M](https://techtinkering.com/articles/the-mouse-programming-language-on-cpm/)## Quickstart
```console
$ cargo build -r
```## Usage
- cargo run filename## Dependencies
[anyhow](https://crates.io/crates/anyhow)## License
Please read the [LICENSE-MIT](https://github.com/ErgeibiMed/mouse_lang_interpreter/blob/main/LICENSE.txt) file in this repository for more information.