Implementation of Unlambda, an esoteric programming language.
Go to file
CismonX c47c3e36c7
Add error logs. Fix GC.
2020-02-17 00:36:49 +08:00
man fix Makefile for Darwin 2020-02-03 01:59:58 +08:00
src Add error logs. Fix GC. 2020-02-17 00:36:49 +08:00
.gitattributes update 2020-02-01 22:45:48 +08:00
.gitignore initial commit 2020-01-30 18:11:10 +08:00
.travis.yml update 2020-02-03 01:43:55 +08:00
LICENSE initial commit 2020-01-30 18:11:10 +08:00
Makefile.am initial commit 2020-01-30 18:11:10 +08:00
README.md update wiki URL 2020-02-09 00:52:34 +08:00
configure.ac update 2020-02-09 00:51:31 +08:00

README.md

u6a

Travis CI LICENSE

Implementation of Unlambda, an esoteric programming language.

Description

The u6a project provides a bytecode compiler and a runtime system for the Unlambda programming language.

Ideas behind this implementation can be found here.

Getting Started

Building:

# (If not already) Install the required build tools.
sudo apt install build-essential automake
# Generate configuration script.
autoreconf --install
# Execute configuration script with desired options.
./configure --prefix=$HOME
# Compile source code and generate executables.
make
# (Optional) Run tests.
make check
# (Optional) Install executables and man pages.
make install

Usage:

# Compile an Unlambda source file into bytecode.
u6ac -o foo.unl.bc foo.unl
# Execute the bytecode file.
u6a foo.unl.bc

See u6ac(1) and u6a(1) man pages for details.

Future Plans

  • Interactive debugger: u6adb
  • More compile-time optimizations
  • More test cases
  • LLVM backend for u6ac