Crystal is a programming language with the following goals:
- Have the same syntax as Ruby, or at least as similar as possible.
- Never have to specify the type of a variable or method argument.
- Be able to call C code by writing bindings to it in Crystal.
- Have compile-time evaluation and generation of code, to avoid boilerplate code.
- Compile to efficient native code.
Interested? Read the introduction or the docs for developers.
Questions or suggestions? Ask in our Google Group
We love Ruby's efficiency for writing code.
We love C's efficiency for running code.
We want the best of both worlds.
We want the compiler to understand what we mean without having to specify types everywhere.
We want full OOP.
Oh, and we don't want to write C code to make the code run faster.
The project is in pre-alpha stage: we are still designing the language and prototying a compiler in Ruby, while at the same time writing a compiler in Crystal.
You will need:
- Ruby 1.9
- LLVM 3.3 installed as a shared library.
Then:
- Clone the repository
- Install
bundler
if you don't have it already:gem install bundler
- Execute
bundle
Finally run crystal:
bin/crystal --help