A compiler for the LINT programming language.
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.
Find a file
2022-01-29 11:17:56 +00:00
src perform preliminary testing 2022-01-29 11:17:56 +00:00
.gitignore Add base repo [SIGNED] 2022-01-27 17:51:20 +00:00
build.rs Run some improvements to the code 2022-01-29 09:43:56 +00:00
Cargo.lock i'm stabbing the dark! 2022-01-29 10:32:11 +00:00
Cargo.toml issue quick patch for a stupid issue i didn't catch 2022-01-29 11:08:41 +00:00
LICENSE ADD DAS LICENSE, WE NOW LGPL'D 2022-01-27 20:06:13 +00:00
README 0.2.3: fix small bug to do with variables 2022-01-29 11:09:47 +00:00
README.html 0.2.3: fix small bug to do with variables 2022-01-29 11:09:47 +00:00

lintc
---------
This is my compiler for my programming language, LINT.

It is written in Rust and uses a REPL loop (i think).

What is LINT?
-----------------
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.

The only way to program in it originally was with Uxntal, an assembly language. I thought this was too hard and created LINT.

Latest release and setup
----------------------------
Clone this repository to get the latest development version.

Currently we are at version 0.2.3 of the software.

If you'd like the point release (stable) version, run these commands below:
git reset --hard 0.2.3
cargo build --release

If you want the latest development release, run these commands:
git pull
cargo build

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.