1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

bc: update Spanish translation (#14955)

This commit is contained in:
Igor Támara 2024-11-26 11:50:44 -05:00 committed by GitHub
parent 765ac2f204
commit c6e1f60d1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,16 +1,16 @@
# bc
> Un lenguaje de calculadora de precisión arbitraria.
> Vea también: `dc`.
> Vea también: `dc`, `qalc`.
> Más información: <https://manned.org/bc>.
- Inicia una sesión interactiva:
`bc`
- Inicia una sesión interactiva con la biblioteca matemática estándar activada:
- Inicia una sesión [i]nteractiva con la bib[l]ioteca matemática estándar activada:
`bc --mathlib`
`bc --interactive --mathlib`
- Calcula una expresión:
@ -27,3 +27,7 @@
- Calcula una función seno/coseno/arctangente/logaritmo natural/exponencial utilizando `mathlib`:
`echo '{{s|c|a|l|e}}({{1}})' | bc --mathlib`
- Ejecuta un guión factorial en línea (inline):
`echo "define factorial(n) { if (n <= 1) return 1; return n*factorial(n-1); }; factorial({{10}})" | bc`