Nexra is a compiled programming language based on JavaScript. Currently, the language compiles to assembly for nasm and ld compile to native binaries.
Grammar can be found here.
To build the project, you will need to have Node.js installed. Once you have Node.js, you can build the project by running the following command in the root directory of the project:
npm i
npm run build
npm linkTo use Nexra, you can run the following command on Linux with nasm and ld installed:
nexra <input_file>Most of the code was taken from Hydrogen, and the YouTube series Creating a Compiler by Pixeled.