0.1.0 • Published 3 years ago
jth-lang v0.1.0
⚠️WARNING⚠️ Jth is still very much a work in progress.
- Many ideas around how the language should work are up in the air.
- Many bugs exist in the implementation.
Latest Version: 0.1.0
| Sub-Repositories | Version |
|---|---|
| Jth Core | 0.1.0 |
| Jth CLI | 0.1.0 |
| Jth Tools | 0.0.0 |
| Jth Stats | 0.0.0 |
Jth (rhymes with "eighth") is an alternative syntax for javascript centered around squential data processing.
It compiles to javascript and is compatibale with existing libraries.
Quickstart
Install jth cli and run jth code inline:
npm install -g jth-cli
jth run -c '"hello world" @!;'Slower Quickstart
Install jth cli:
npm install -g jth-cliCreate jth file:
echo '"hello world" @!;' > index.jthCompile jth file
jth compile index.jth index.mjsRun compiiled file
node index.mjsDocumentation
Learn more about jth here:
Related Repositories
See Also
Languages with Similar Syntax
- https://en.wikipedia.org/wiki/Forth_(programming_language)
- https://en.wikipedia.org/wiki/Joy_(programming_language)
- https://en.wikipedia.org/wiki/Factor_(programming_language)