mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 17:46:02 +02:00
pages/common/*.md: REPL Normalization (#6471)
This commit is contained in:
parent
ec4a9a4ee6
commit
882781e410
15 changed files with 15 additions and 15 deletions
|
@ -31,6 +31,6 @@
|
||||||
|
|
||||||
`cake server`
|
`cake server`
|
||||||
|
|
||||||
- Start a REPL interactive shell instance:
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`cake console`
|
`cake console`
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
> All options can be defined in a `deps.edn` file.
|
> All options can be defined in a `deps.edn` file.
|
||||||
> More information: <https://clojure.org/guides/deps_and_cli>.
|
> More information: <https://clojure.org/guides/deps_and_cli>.
|
||||||
|
|
||||||
- Start a REPL:
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`clj`
|
`clj`
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
`coffee --compile {{path/to/file.coffee}} --output {{path/to/file.js}}`
|
`coffee --compile {{path/to/file.coffee}} --output {{path/to/file.js}}`
|
||||||
|
|
||||||
- Run interactive REPL:
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`coffee --interactive`
|
`coffee --interactive`
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
`ghc -c {{file.hs}}`
|
`ghc -c {{file.hs}}`
|
||||||
|
|
||||||
- Run Haskell interactive interpreter (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`ghci`
|
`ghci`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> Guile Scheme interpreter.
|
> Guile Scheme interpreter.
|
||||||
> More information: <https://www.gnu.org/software/guile>.
|
> More information: <https://www.gnu.org/software/guile>.
|
||||||
|
|
||||||
- Start the Guile Scheme REPL:
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`guile`
|
`guile`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> A Python shell with automatic history, dynamic object introspection, easier configuration, command completion, access to the system shell and more.
|
> A Python shell with automatic history, dynamic object introspection, easier configuration, command completion, access to the system shell and more.
|
||||||
> More information: <https://ipython.org/documentation.html>.
|
> More information: <https://ipython.org/documentation.html>.
|
||||||
|
|
||||||
- Start an interactive IPython session:
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`ipython`
|
`ipython`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> A high-level, high-performance dynamic programming language for technical computing.
|
> A high-level, high-performance dynamic programming language for technical computing.
|
||||||
> More information: <https://docs.julialang.org/en/v1/manual/getting-started/>.
|
> More information: <https://docs.julialang.org/en/v1/manual/getting-started/>.
|
||||||
|
|
||||||
- Start a Julia REPL session:
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`julia`
|
`julia`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> Python language interpreter.
|
> Python language interpreter.
|
||||||
> More information: <https://www.python.org>.
|
> More information: <https://www.python.org>.
|
||||||
|
|
||||||
- Call a Python interactive shell (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`python`
|
`python`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> R language interpreter.
|
> R language interpreter.
|
||||||
> More information: <https://www.r-project.org>.
|
> More information: <https://www.r-project.org>.
|
||||||
|
|
||||||
- Start an R interactive shell (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`R`
|
`R`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> Ruby programming language interpreter.
|
> Ruby programming language interpreter.
|
||||||
> More information: <https://www.ruby-lang.org>.
|
> More information: <https://www.ruby-lang.org>.
|
||||||
|
|
||||||
- Open an Interactive Ruby Shell (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`irb`
|
`irb`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> High performance Common Lisp compiler.
|
> High performance Common Lisp compiler.
|
||||||
> More information: <http://www.sbcl.org/>.
|
> More information: <http://www.sbcl.org/>.
|
||||||
|
|
||||||
- Start an SBCL interactive shell (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`sbcl`
|
`sbcl`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> Build tool for Scala and Java projects.
|
> Build tool for Scala and Java projects.
|
||||||
> More information: <https://www.scala-sbt.org/1.0/docs/>.
|
> More information: <https://www.scala-sbt.org/1.0/docs/>.
|
||||||
|
|
||||||
- Start the SBT interactive shell (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`sbt`
|
`sbt`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> Scala application launcher and interactive interpreter.
|
> Scala application launcher and interactive interpreter.
|
||||||
> More information: <https://scala-lang.org>.
|
> More information: <https://scala-lang.org>.
|
||||||
|
|
||||||
- Start a Scala interactive shell (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`scala`
|
`scala`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> MIT Scheme language interpreter and REPL (interactive shell).
|
> MIT Scheme language interpreter and REPL (interactive shell).
|
||||||
> More information: <https://www.gnu.org/software/mit-scheme>.
|
> More information: <https://www.gnu.org/software/mit-scheme>.
|
||||||
|
|
||||||
- Open an interactive shell (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`scheme`
|
`scheme`
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
> Create, run and build Swift projects.
|
> Create, run and build Swift projects.
|
||||||
> More information: <https://swift.org>.
|
> More information: <https://swift.org>.
|
||||||
|
|
||||||
- Invoke the interactive interpreter (REPL):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
`swift`
|
`swift`
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue