julia 1.10.2, url esc sequence removal
This commit is contained in:
parent
d8123167be
commit
425a65f7db
@ -1,5 +1,5 @@
|
|||||||
import sys
|
import sys
|
||||||
f = sys.stdin.read()
|
f = sys.stdin.read()
|
||||||
g = f.replace('\\u001b[','ꍟ⦃')
|
g = f.replace('\\u001b[','ꍟ⦃').replace('\\u001b]8;;','').replace('\\u001b\\\\','')
|
||||||
sys.stdout.write(g)
|
sys.stdout.write(g)
|
||||||
|
|
||||||
|
16
_quarto.yml
16
_quarto.yml
@ -45,14 +45,14 @@ book:
|
|||||||
- chapters/first_contact.qmd
|
- chapters/first_contact.qmd
|
||||||
- chapters/Erste_Bsp.qmd
|
- chapters/Erste_Bsp.qmd
|
||||||
- chapters/syntax.qmd
|
- chapters/syntax.qmd
|
||||||
# - chapters/5_TricksHelp.qmd
|
- chapters/5_TricksHelp.qmd
|
||||||
# - chapters/numerictypes.qmd
|
- chapters/numerictypes.qmd
|
||||||
# - chapters/Pi2.qmd
|
- chapters/Pi2.qmd
|
||||||
# - chapters/pcomplex.qmd
|
- chapters/pcomplex.qmd
|
||||||
# - chapters/9_functs.qmd
|
- chapters/9_functs.qmd
|
||||||
# - chapters/6_ArraysEtcP1.qmd
|
- chapters/6_ArraysEtcP1.qmd
|
||||||
# - chapters/7_ArraysP2.qmd
|
- chapters/7_ArraysP2.qmd
|
||||||
# - chapters/10_Strings.qmd
|
- chapters/10_Strings.qmd
|
||||||
# - chapters/makie.qmd
|
# - chapters/makie.qmd
|
||||||
# - chapters/ablaufsteuerung.qmd
|
# - chapters/ablaufsteuerung.qmd
|
||||||
# - chapters/example.qmd
|
# - chapters/example.qmd
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
# Arbeit mit Julia: REPL, Pakete, Introspection
|
# Arbeit mit Julia: REPL, Pakete, Introspection
|
||||||
|
|
||||||
|
|
||||||
@sec-tab
|
|
||||||
|
|
||||||
## Dokumentation
|
## Dokumentation
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ $ julia
|
|||||||
(_) | (_) (_) |
|
(_) | (_) (_) |
|
||||||
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
|
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
|
||||||
| | | | | | |/ _` | |
|
| | | | | | |/ _` | |
|
||||||
| | |_| | | | (_| | | Version 1.10.1 (2024-02-13)
|
| | |_| | | | (_| | | Version 1.10.2 (2024-03-01)
|
||||||
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|
||||||
|__/ |
|
|__/ |
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ f
|
|||||||
Intelligence Laboratory* des MIT
|
Intelligence Laboratory* des MIT
|
||||||
- 2012 erste release v0.1
|
- 2012 erste release v0.1
|
||||||
- 2018 Version v1.0
|
- 2018 Version v1.0
|
||||||
- aktuell: v1.10.1 vom 13. Februar 2024
|
- aktuell: v1.10.2 vom 1. März 2024
|
||||||
|
|
||||||
Zum ersten release 2012 haben die Schöpfer von Julia ihre Ziele und Motivation in dem Blogbeitrag [Why we created Julia](https://julialang.org/blog/2012/02/why-we-created-julia/)
|
Zum ersten release 2012 haben die Schöpfer von Julia ihre Ziele und Motivation in dem Blogbeitrag [Why we created Julia](https://julialang.org/blog/2012/02/why-we-created-julia/)
|
||||||
interessant zusammengefasst.
|
interessant zusammengefasst.
|
||||||
|
Loading…
Reference in New Issue
Block a user