modal/README.md

22 lines
549 B
Markdown
Raw Normal View History

2024-03-31 20:18:37 +01:00
# Modal
2024-04-08 18:51:48 +01:00
[Modal](https://wiki.xxiivv.com/site/modal) is a language based a model of computation that uses pattern matching and replacement to rewrite trees.
2024-03-31 20:18:37 +01:00
All Modal code is represented as a series of rules applied to a given tree, formatted textually as tokens delimited with parenthesis, which gets continually modified until no rules match any given part of the tree.
2024-04-04 23:33:22 +01:00
## Build
```
cc src/modal.c -o bin/modal
```
2024-03-31 20:18:37 +01:00
## Run
```
2024-04-04 23:33:22 +01:00
bin/modal examples/hello.modal
2024-03-31 20:18:37 +01:00
```
## Credits
Created by [wryl](https://wryl.tech/), Immediate Mode Technologies.