Git Product home page Git Product logo

kitten's Introduction

The Kitten Programming Language

Gitter chat Build Status

Kitten is a statically typed, stack-based functional programming language designed for simplicity, speed, and safety. This is an in-progress implementation of that language, including:

  • An interactive console for testing code

  • An interpreter

  • A native-code compiler producing static executables (incomplete)

Contributing

I need help to make Kitten a reality! If you’re interested in helping in any way, you’re more than welcome, even if you’re not experienced with Haskell or compiler development. You can look at the project for the initial release to see what I’m working on, and check out the contribution guidelines for suggestions on how you can help.

Resources

Building and Installing

If you’re building the compiler just to try it out or work on it, you can follow the preferred build method of using Stack:

git clone https://github.com/evincarofautumn/kitten.git
cd kitten
stack setup  # only necessary on first build
stack build

stack exec kitten
stack exec kitten -- <flags>

However, if you want to install Kitten in a standard location outside the build directory, due to a deficiency in Stack’s support for Cabal’s data-files feature, it is not recommended to use stack install to install a copy of the executable, because this will not install the common vocabulary common.ktn containing Kitten’s standard library.

There are two workarounds. One is to forgo Stack, and build and install Kitten using Cabal directly:

cabal sandbox init
cabal install --only-dependencies
cabal install --prefix="$HOME/.local"

This will correctly install the common vocab so that Kitten can find it. The preferred install location for Kitten is ~/.local on Unix-like systems (so the executable resides at ~/.local/bin/kitten) or %APPDATA%\local on Windows (resp. %APPDATA%\local\bin\kitten.exe).

The other option is to manually copy common.ktn to the install directory:

stack install
cp common.ktn ~/.local/bin/

It’s also recommended to add the install directory (~/.local/bin or %APPDATA\local\bin) to your PATH so that you can invoke kitten directly without a path prefix.

These are the only files installed by Kitten, so to uninstall it, you only need to delete the compiler and common vocab from the install directory.

Miscellany

Kitten is distributed under the terms of the MIT license. Contributors should agree to abide by the code of conduct.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.