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

27 lines
1 KiB
HTML
Raw Normal View History

<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.2.3 of the software.</p>
2022-01-27 20:10:05 +00:00
2022-01-29 09:45:33 +00:00
<p>If you'd like the point release (stable) version, run these commands below:</p>
<pre>git reset --hard 0.2.3
2022-01-29 10:49:58 +00:00
2022-01-29 10:51:48 +00:00
cargo build --release</pre>
2022-01-29 09:45:33 +00:00
<p>If you want the latest development release, run these commands:</p>
2022-01-29 10:51:48 +00:00
<pre>git pull
2022-01-29 10:49:58 +00:00
2022-01-29 10:51:48 +00:00
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>