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

* pages/*: add `< >` around links in example descriptions * Apply suggestions from code review Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * apm: add `< >` to the English page --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
28 lines
635 B
Markdown
28 lines
635 B
Markdown
# elm
|
|
|
|
> Compila ed esegui file sorgente Elm.
|
|
> Maggiori informazioni: <https://elm-lang.org>.
|
|
|
|
- Inizializza un progetto Elm, generando un file `elm.json`:
|
|
|
|
`elm init`
|
|
|
|
- Avvia una shell Elm interattiva:
|
|
|
|
`elm repl`
|
|
|
|
- Compila un file Elm, scrivendo il risultato in un file `index.html`:
|
|
|
|
`elm make {{sorgente}}`
|
|
|
|
- Compila un file Elm, scrivendo il risultato in un file JavaScript:
|
|
|
|
`elm make {{sorgente}} --output={{destinazione}}.js`
|
|
|
|
- Avvia un web server locale che compila file Elm al caricamento delle pagine:
|
|
|
|
`elm reactor`
|
|
|
|
- Installa un pacchetto Elm da <https://package.elm-lang.org>:
|
|
|
|
`elm install {{author}}/{{package}}`
|