mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
24 lines
555 B
Markdown
24 lines
555 B
Markdown
# crystal
|
|
|
|
> Strumento per gestire codice sorgente Crystal.
|
|
> Maggiori informazioni: <https://crystal-lang.org/reference/using_the_compiler>.
|
|
|
|
- Esegui un file Crystal:
|
|
|
|
`crystal {{percorso/del/file.cr}}`
|
|
|
|
- Compila un file e tutte le sue dipendenze in un unico eseguibile:
|
|
|
|
`crystal build {{percorso/del/file.cr}}`
|
|
|
|
- Avvia un server locale interattivo per testare il linguaggio:
|
|
|
|
`crystal play`
|
|
|
|
- Crea una directory di progetto per un'applicazione Crystal:
|
|
|
|
`crystal init app {{nome_applicazione}}`
|
|
|
|
- Mostra tutte le opzioni di aiuto:
|
|
|
|
`crystal help`
|