Skip to content
The Crystal Programming Language
Crystal JavaScript Shell HTML C++ CSS Other
Branch: master
Clone or download

Latest commit

bcardiff Add Experimental annotation and doc label (#9244)
The annotation can be used without args or with a single string argument (similar to Deprecated).

There is no semantics given to the annotation.
Latest commit 73b5d93 May 11, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci Update distributions-script (#9242) May 8, 2020
.github/workflows Win CI: Enable more specs, add zlib and yaml (#9144) Apr 25, 2020
bin CI: Ensure python@2 is gone and z3 is available for llvm@10 (#9129) Apr 19, 2020
etc Improve debugging support (#8538) Apr 16, 2020
man Rename CLI argument to json-config-url (#9254) May 11, 2020
samples Regenerate implementation tool sample (#9003) Apr 10, 2020
scripts Add version select to docs HTML Apr 23, 2020
spec Add Experimental annotation and doc label (#9244) May 11, 2020
src Add Experimental annotation and doc label (#9244) May 11, 2020
.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
CHANGELOG.md Release 0.34.0 (#8956) Apr 6, 2020
CODE_OF_CONDUCT.md Modify CoC contact section Feb 18, 2016
CONTRIBUTING.md Use correct command for running a particular spec (#9103) Apr 17, 2020
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE to include forum (#7301) Jan 11, 2019
LICENSE Fix LICENSE and add NOTICE file (#3903) Apr 10, 2020
Makefile Add project name and version to API docs (#8792) Apr 14, 2020
NOTICE.md Fix LICENSE and add NOTICE file (#3903) Apr 10, 2020
README.md Remove Bountysource badge and reference in README (#9225) May 5, 2020
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 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 and the continued support of 84codes, Nikola Motor Company and every other sponsor.

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.