basilTeam / basil

Fast and flexible language exploring partial evaluation, context-sensitive parsing, and metaprogramming. Compiles JIT or AOT to native code.
BSD 3-Clause "New" or "Revised" License
124 stars 11 forks source link
compiler jit jit-compiler language lisp-dialect parser programming-language static-typing


The Basil Programming Language

println "Welcome to Basil!"

def greetings = ["Hello" "Nice to meet you" "Salutations"]

def greet name? greeting? =
    println greeting + ", " + name + "!"

println "What's your name?"
greet (read String) greetings[1]

For more examples, see the example/ directory located in this project's root!

Basil is a fast and flexible language for expressing complex problems in natural terms without compromising readability, simplicity, or performance.

*Featuring...**

*Note: Basil is highly WIP! The language is unstable, and these claims may or may not apply on all platforms or for all applications.


Installation

Currently, we only support building the Basil compiler from source. You'll need a C++17-conformant C++ compiler, a Python 2.7 or Python 3 interpreter, and maybe a bit of resourcefulness...

$ git clone https://github.com/basilTeam/basil
$ ./build.py --help             # lists all build options (compiler to use, additional flags, etc)
$ ./build.py basil-release
$ bin/basil help

Basil's language runtime can be compiled separately, as either a statically or dynamically linked library.

$ ./build.py librt-static       # to build a statically-linked library
$ ./build.py librt-dynamic      # to build a dynamically-linked library

Supported Platforms

Operating Systems:

Architectures:


License

Basil is distributed under the 3-Clause BSD License. See LICENSE for details.