22 lines
1,019 B
HTML
22 lines
1,019 B
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>If you'd like the point release (stable) version, run this command below:</p>
|
||
|
<code>git reset --hard efc5335d5fbfed949aaa4949744f200ffdf2fdc6</code>
|
||
|
|
||
|
<p>This will reset your git tree back to the latest version that is stable.</p>
|
||
|
|
||
|
<p>You will then want to run build.sh to build it.</p>
|
||
|
|
||
|
<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>
|