Skip to content

Commit

Permalink
Added initial README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
elijah-potter committed Oct 17, 2023
1 parent 86bb530 commit 7a7cf6b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<div id="header" align="center">
<img src="/packages/demo/public/logo.svg" width="80%" />
<h1>The Thrax Programming Language</h1>
</div>

## What is it?

Thrax is a little toy programming language I threw together in my free time near the end of 2022.
My primary motivation was to learn more of the fine-point details of how dynamically-typed interpreted languages worked (JavaScript, Python and Ruby).
In the future, I intend of doing a full write-up of the process and what it taught me on the way.

I was also working on a [project](https://hdiharmony.web.app/) at [work](https://archytasinc.com/) that involved low-level parsing and interpretation of JavaScript code.
While we were using SWC for the actual parsing, writing my own parser gave me a much better understanding of how everything fit together.

## [Live Sandbox](https://thrax.elijahpotter.dev)

You don't have to download or install anything to start using Thrax.
Play around with the language and experiment with a few demo scripts at the [interactive sandbox](https://thrax.elijahpotter.dev).

## Local Development

Want to explore Thrax on your own machine?

As long as you have Node.js, Rust, and Yarn, you can run and build everything using:

```bash
./build.sh --release # or --debug
```

Or, to run all unit tests:

```bash
./test.sh
```

0 comments on commit 7a7cf6b

Please sign in to comment.