bryal / carth

The Carth programming language. Mirror of https://sr.ht/~jojo/Carth/

Home Page:https://sr.ht/~jojo/Carth/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Carth programming language

Visit https://carth.pink/ for an overview of the language and more info.

WORK IN PROGRESS

Just as a little disclaimer: this project is still in alpha development, so there are no guarantees of stability etc.

Features

  • Scheme-inspired syntax and feel
  • Static, Hindley-Milner typechecking à la ML
  • Currying
  • Closures
  • Algebraic datatypes
  • LLVM backend

Roadmap

This is a high-level overview of what is planned for the language, and some of the points are just tentative. See TODO.org for more extensive list of planned features and more detailed descriptions.

  • Typeclasses
  • Type families
  • Higher kinded types
  • Effect system
  • Linear types

Building Carth

The compiler is written in Haskell and uses the Stack build system, while the core-library is written in Rust. The external dependencies required are LLVM version 9.

To build the project and install the carth binary, the core library, and the standard library, simply run make install, which defaults to installing the binary in ~/.local/bin, the core library in ~/.local/lib, and the modules of the Carth standard library in ~/.carth/mod.

Building with Carth

At compiler runtime, the dependencies are libsigsegv, libdl, libpthread, libm, and libgc, which are linked into the executables produced by Carth.

Carth must further be able to find the core library and standard library modules, so you must have added the directory of the installed core library (default ~/.local/lib) to your LIBRARY_PATH environment variable, the directory of the installed standard library (default ~/.carth/mod) to your CARTH_MODULE_PATH environment variable.

Running

# General help
carth help
carth -h
carth --help

# Help for a specific subcommand
carth help c

# Compile and run a program with default output filename
carth c examples/fizzbuzz.carth
./examples/fizzbuzz.bin

# Run with the JIT compiler
carth run examples/fizzbuzz.carth

# Compile a program with a specific output filename
carth c -o examples/fizzbuzz examples/fizzbuzz.carth
./examples/fizzbuzz

License

Carth is dual licensed under the Anti-Capitalist Software License or the AGPL version 3 or later. See LICENSE-ACSL and LICENSE-AGPLv3 for the full license texts. For more information about the licenses, go to anticapitalist.software or gnu.org.

About

The Carth programming language. Mirror of https://sr.ht/~jojo/Carth/

https://sr.ht/~jojo/Carth/

License:Other


Languages

Language:Haskell 93.5%Language:Rust 4.4%Language:Scheme 1.6%Language:Makefile 0.2%Language:Shell 0.2%Language:Dockerfile 0.1%