Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmbarbour/awelon
Awelon project is a new UI model with a new language.
https://github.com/dmbarbour/awelon
Last synced: 5 days ago
JSON representation
Awelon project is a new UI model with a new language.
- Host: GitHub
- URL: https://github.com/dmbarbour/awelon
- Owner: dmbarbour
- License: other
- Created: 2013-04-15T05:51:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-19T18:06:08.000Z (about 9 years ago)
- Last Synced: 2024-08-01T12:29:28.538Z (3 months ago)
- Language: Haskell
- Homepage:
- Size: 3.54 MB
- Stars: 101
- Watchers: 18
- Forks: 4
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starred - dmbarbour/awelon - Awelon project is a new UI model with a new language. (others)
README
This repository contains multiple components developed for Awelon Project.
Components:
* [ABC](AboutABC.md)[1](ABC.md) - the Awelon bytecode
* [AO](AboutAO.md) - a macro language for the bytecode
* [RDP](AboutRDP.md) - a reactive paradigm for open systemsVision:
* [Awelon Project](AwelonProject.md)
# Status
Preliminary Software:
* **aoi** - a REPL for AO code, written in Haskell
* **ao** - a multi-utility command line, written in Haskell
* A small, growing dictionary of AO code (the `ao/` directory)Awelon project is not in a good condition for showing off. Its interpreted performance is lacking, and I'd like to avoid ABC gaining a reputation as 'slow' before it implements a proper set of compilers and optimizers. Further, the AO dictionary is still in a very early stage, e.g. implementing useful data structures and other low level stuff. It will be a while before we can express interesting applications.
However, people who aren't going to be judgemental about performance are welcome to experiment with and contribute to the AO dictionaries.
In the near future, I'll be developing a wiki-based web application for further developing AO code. This will ultimately make contribution a lot easier, and enable development of simple web application services.
## Environment Configuration
For `aoi` and `ao` developers must adjust their environment variables.
**Environment Variables:**
* **AO_PATH**: where to search for AO files; no default
* **AOI_DICT**: imports for `aoi` executable; default "aoi"
* **AO_DICT**: imports for `ao` executable; default "ao"
* **AO_TEMP**: directory for JIT and other tasks; default "./aotmp"Developers must set AO_PATH. Usually, this should just be a single directory with all the AO files (AO has a flat namespace anyway, and should eventually upgrade to a database).