#
Crystal
Crystal is a programming language with friendly syntax, static type checking and modern stdlib. It compiles into efficient, easy-to-distribute native code.
Here are 1,469 public repositories matching this topic...
-
Updated
Feb 1, 2021 - Crystal
A Crystal web framework that makes building applications fast, simple, and enjoyable. Get started with quick prototyping, less bugs, and blazing fast performance.
-
Updated
Jan 27, 2021 - Crystal
Amethyst is a Rails inspired web-framework for Crystal language
-
Updated
Feb 10, 2018 - Crystal
Mango is a self-hosted manga server and web reader
-
Updated
Feb 2, 2021 - Crystal
Full featured Redis client for Crystal
-
Updated
Nov 28, 2020 - Crystal
HertzDevil
commented
Nov 1, 2020
Comparisons to booleans are not pointless if the other operand is a union containing Bool:
def f(x : Int32 | Bool)
print 1 if x == true
print 2 if x == false
print 3 if x
print 4 if !x
puts
end
f(0) # 3
f(true) # 13
f(false) # 24(Comparisons to unions not containing Bool are still pointless, as they should always evaluate to false.)
Vim filetype and tools support for Crystal language.
-
Updated
Jan 17, 2021 - Vim script
Database wrapper and ORM for Crystal, inspired by Ecto
-
Updated
Sep 8, 2020 - Crystal
Crystal ORM using ActiveRecord pattern with flexible query DSL
-
Updated
Jan 24, 2021 - Crystal
Scry is a code analysis server for https://crystal-lang.org
-
Updated
Sep 2, 2020 - Crystal
Crystal docs at https://crystal-lang.org/reference
-
Updated
Feb 1, 2021 - Makefile
Crystal bindings to SFML multimedia/game library
-
Updated
Jan 26, 2021 - Crystal
-
Updated
Jan 9, 2021 - Crystal
A customizable color picker for iOS in Swift
-
Updated
Feb 5, 2020 - Swift
Build/Runs your crystal application, watches files, and rebuilds/restarts app on file changes
-
Updated
Aug 16, 2020 - Crystal
Minimum High Performance Middleware for Crystal Web Server.
-
Updated
Oct 20, 2019 - Crystal
-
Updated
Jan 2, 2020 - Crystal
Created by Ary Borenszweig, Juan Wajnerman
Released June 2011
- Organization
- crystal-lang
- Website
- crystal-lang.org
- Wikipedia
- Wikipedia


Describe the bug
In your Actions, you could respond to different formats based on the accepted format. Normally it might just be
html, but you may have something that looks like:To Reproduce