first adaptions for 2025
This commit is contained in:
parent
0e712f0c33
commit
6b9a05f69c
@ -1 +1 @@
|
|||||||
QUARTO_JULIA_PROJECT=/home/hellmund/G/QuartoNotebookRunner.jl
|
QUARTO_JULIA_PROJECTXXX=/home/hellmund/G/QuartoNotebookRunner.jl
|
||||||
|
@ -32,7 +32,7 @@ $ julia
|
|||||||
(_) | (_) (_) |
|
(_) | (_) (_) |
|
||||||
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
|
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
|
||||||
| | | | | | |/ _` | |
|
| | | | | | |/ _` | |
|
||||||
| | |_| | | | (_| | | Version 1.10.2 (2024-03-01)
|
| | |_| | | | (_| | | Version 1.11.3 (2025-01-21)
|
||||||
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|
||||||
|__/ |
|
|__/ |
|
||||||
|
|
||||||
|
@ -30,8 +30,9 @@ function mhelp(s,n,m)
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
function Tab(s)
|
function Tab(s)
|
||||||
l = filter(x->startswith(x,s), REPL.doc_completions(s))
|
dc = map(x->x.name, REPL.doc_completions(s))
|
||||||
println.(l[2:end])
|
l = filter(x->startswith(x,s), dc)
|
||||||
|
println.(l)
|
||||||
return # return nothing, since broadcast println produces empty vector
|
return # return nothing, since broadcast println produces empty vector
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -311,10 +312,10 @@ v
|
|||||||
|
|
||||||
```{julia}
|
```{julia}
|
||||||
using REPL
|
using REPL
|
||||||
|
|
||||||
function Tab(s)
|
function Tab(s)
|
||||||
l = filter(x->startswith(x,s), REPL.doc_completions(s))
|
dc = map(x->x.name, REPL.doc_completions(s))
|
||||||
println.(l[2:end])
|
l = filter(x->startswith(x,s), dc)
|
||||||
|
println.(l)
|
||||||
return # return nothing, since broadcast println produces empty vector
|
return # return nothing, since broadcast println produces empty vector
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -39,7 +39,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.2 vom 1. März 2024
|
- aktuell: v1.11.3 vom 21. Januar 2025
|
||||||
|
|
||||||
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.
|
||||||
@ -125,7 +125,7 @@ Julia has a built-in package manager."
|
|||||||
## Eine kleine Auswahl an Online-Material zu Julia {.unnumbered}
|
## Eine kleine Auswahl an Online-Material zu Julia {.unnumbered}
|
||||||
|
|
||||||
- [Dokumentation](https://docs.julialang.org/en/v1/) - die offizielle Dokumentation
|
- [Dokumentation](https://docs.julialang.org/en/v1/) - die offizielle Dokumentation
|
||||||
- [Cheat Sheet](https://juliadocs.github.io/Julia-Cheat-Sheet/) - "a quick & dirty overview"
|
- [Cheat Sheet](https://cheatsheet.juliadocs.org/) - "a quick & dirty overview"
|
||||||
- [Introducing Julia](https://en.wikibooks.org/wiki/Introducing_Julia)-- ein WikiBook
|
- [Introducing Julia](https://en.wikibooks.org/wiki/Introducing_Julia)-- ein WikiBook
|
||||||
- [The Julia Express](http://bogumilkaminski.pl/files/julia_express.pdf) - Kurzfassung, Julia auf 16 Seiten
|
- [The Julia Express](http://bogumilkaminski.pl/files/julia_express.pdf) - Kurzfassung, Julia auf 16 Seiten
|
||||||
- [Think Julia](https://benlauwens.github.io/ThinkJulia.jl/latest/book.html) - Einführung in die Programmierung mit Julia als Sprache
|
- [Think Julia](https://benlauwens.github.io/ThinkJulia.jl/latest/book.html) - Einführung in die Programmierung mit Julia als Sprache
|
||||||
|
Loading…
x
Reference in New Issue
Block a user