1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-09-01 10:42:45 +02:00

[crystal/fr] French language for crystal (#2602)

* Add Crystal/FR

* Spell checking
This commit is contained in:
Arnaud Fernandés
2016-12-23 01:06:39 +01:00
committed by ven
parent 0074c8f351
commit 601aae91ae
2 changed files with 556 additions and 1 deletions

View File

@@ -110,7 +110,7 @@ sentence == "question?" #=> false : Bool
[1, 2, 3].class #=> Array(Int32)
[1, "hello", 'x'].class #=> Array(Int32 | String | Char)
# Empty arrays should define a type
# Empty arrays should specify a type
[] # Syntax error: for empty arrays use '[] of ElementType'
[] of Int32 #=> [] : Array(Int32)
Array(Int32).new #=> [] : Array(Int32)