This repository has been archived on 2023-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
lintc/README.html
Celeste 4826485417
0.4.0: Add loops
This is possible by adding begin <loop name> after a macro, doing loop code and ending it with end!<loop name>. If you add loops you will need to add break! at the end of your code.
2022-02-15 17:20:21 +00:00

26 lines
1 KiB
HTML

<h2>lintc</h2>
<p>This is my compiler for my programming language, LINT.</p>
<p>It is written in Rust and uses a REPL loop (i think).</p>
<h2>What is LINT?</h2>
<p>LINT (LINT Is Not Tal) is a programming language for the Uxn virtual machine which is a computer platform intended to run as software to reuse/recycle older devices.</p>
<p>The only way to program in it originally was with Uxntal, an assembly language. I thought this was too hard and created LINT.</p>
<h2>Latest release and setup</h2>
<p>Clone this repository to get the latest development version.</p>
<p>Currently we are at version 0.4.0 of the software.</p>
<p>If you'd like the point release (stable) version, run these commands below:</p>
<pre>git reset --hard 0.4.0
cargo build --release</pre>
<p>If you want the latest development release, run these commands:</p>
<pre>git pull
cargo build</pre>
<p>You will also want to download the accompanying macros repository and place it in the same directory as the lintc binary or your working directory.</p>