diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-06 18:02:55 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-06 18:02:55 -0800 |
commit | e023fd8d06bc55389ab13db6c6d8d89903b5afca (patch) | |
tree | 879216d5aa64e38e0a68777563df6f19b1c682d3 /website | |
parent | 0c024e93b606406843aad28e1e3948e956241e91 (diff) |
add noexcess
Diffstat (limited to 'website')
-rw-r--r-- | website/projects/index.html | 2 | ||||
-rw-r--r-- | website/projects/no_excess.html | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/website/projects/index.html b/website/projects/index.html index 79750d7..f3ffa0a 100644 --- a/website/projects/index.html +++ b/website/projects/index.html @@ -9,7 +9,7 @@ $$START CONTENT </p> <ul> <li><a href="./dotfiles.html">Dotfiles</a> -- My dotfiles (script for autoinstalling them coming soon).</li> - <li><a href="./trail_of_dusk.html">Trail of Dusk</a> -- a text based roguelike rpg.</li> + <li><a href="./no_excess.html">NoExcess</a> -- a scheme-like programming language written in c.</li> <li><a href="https://plant9.nullring.xyz">Plant9</a> -- A GNU/linux distribution that I am working on with Matthew Hinton.</li> <li><a href="./comas.html">COMAS</a> -- A mathematics library that is built on the idea of quaternionic functions inside tensors.</li> </ul> diff --git a/website/projects/no_excess.html b/website/projects/no_excess.html new file mode 100644 index 0000000..9426e37 --- /dev/null +++ b/website/projects/no_excess.html @@ -0,0 +1,26 @@ +$$START TITLE +NoExcess +$$END TITLE + +$$START CONTENT +<h1>NoExcess</h1> +<p> + NoExcess is a scheme-like programming language that is written in C. The goal of this project is to create + a stripped down version of scheme that with a minimal set of built-in functions that work with the built-in datatypes. + Users can make their own versions of NoExcess by writing macros that alter the way the language is written. + I wrote the bulk of this thing in a caffeine binge of three days. It's a pretty cool program! +</p> + +<p> + The language is currently not ready for release, although you can play around with it and most things will work. +</p> + +<p>You can get the program here:</p> +<code>git clone git://prestonpan.tech/no_excess.git</code> + +<p> + If you still have problems getting the copies of the software, you can + <a href="https://git.prestonpan.tech">browse my git frontend</a> for the software + names. +</p> +$$END CONTENT |