The Wayback Machine - https://web.archive.org/web/20190514105146/https://github.com/crystal-lang/crystal
Skip to content
The Crystal Programming Language
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci Update CI to use 0.28.0 Apr 18, 2019
bin Define default CRYSTAL_LIBRARY_PATH in OSX CI Apr 22, 2019
etc Add --warnings --error-on-warnings --exclude-warnings compiler options Apr 3, 2019
man Docs: Update man page with new options (#5554) (#6259) Jun 27, 2018
samples Samples: sync thread rounds Apr 12, 2019
scripts Unicode: update to version 12.0.0 (#7721) Apr 25, 2019
spec Hide hidden matches in non-recursive directories if `match_hidden` is… May 13, 2019
src Hide hidden matches in non-recursive directories if `match_hidden` is… May 13, 2019
.dockerignore Dockerfile now uses `make`. Fixes build after addition of LLVM extens… Sep 9, 2015
.editorconfig Mark .editorconfig as root (#6031) May 1, 2018
.gitignore Fix docs path in .gitignore and Makefile (#5217) Oct 31, 2017
.travis.yml Run formatter in travis. Update /bin/ci usage instructions (#7390) Feb 7, 2019
BACKERS.md Fix in BACKERS.md Aug 13, 2015
CHANGELOG.md Release 0.28.0 (#7663) Apr 17, 2019
CODE_OF_CONDUCT.md Modify CoC contact section Feb 18, 2016
CONTRIBUTING.md Mention git pre-commit hook in CONTRIBUTING.md (#7617) Apr 6, 2019
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE to include forum (#7301) Jan 11, 2019
LICENSE Update LICENSE's copyright year (#7246) Jan 1, 2019
Makefile Keep embedded libraries in the compiled compiler Apr 22, 2019
README.md Reorganize community section in README, add forum (#7235) Dec 30, 2018
VERSION Update CI to use 0.28.0 Apr 18, 2019
Vagrantfile Change from `bash` to `sh` (#5468) Jan 2, 2018

README.md

Crystal

Travis CI Build Status CircleCI Build Status Join the chat at https://gitter.im/crystal-lang/crystal Bountysource Code Triagers Badge


born-and-raised

Crystal is a programming language with the following goals:

  • Have a syntax similar to Ruby (but compatibility with it is not a goal)
  • Statically type-checked but without having to specify the type of variables or method arguments.
  • 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.

Why?

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.

Project Status

Crystal is still under heavy development. There can be breaking changes but we're trying to keep them as minimum as possible.

The development is possible thanks to the community's effort, 84codes' support, and every BountySource supporter.

Installing

Follow these instructions

Try it online

play.crystal-lang.org

Documentation

Community

Questions or suggestions? Ask on the Crystal Forum, on our Gitter channel or IRC channel #crystal-lang at chat.freenode.net, or on Stack Overflow under the crystal-lang tag. There is also an archived Google Group.

Contributing

Read the general Contributing guide, and then:

  1. Fork it (https://github.com/crystal-lang/crystal/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request
You can’t perform that action at this time.