IO fertig, trick mit module name in first julia cell

This commit is contained in:
2024-06-04 17:57:12 +02:00
parent fb58c51aa2
commit 8e83a18cd0
8 changed files with 210 additions and 128 deletions

View File

@@ -7,6 +7,8 @@ engine: julia
#| echo: false
#| output: false
using InteractiveUtils
import QuartoNotebookWorker
Base.stdout = QuartoNotebookWorker.with_context(stdout)
```
# Zeichen, Strings und Unicode
@@ -140,10 +142,6 @@ Alternativ können Sie die PDF-Version dieser Seite verwenden. Dort sind alle Fo
Eine kleine Hilfsfunktion:
```{julia}
"""
printuc(c, n):
print n characters from unicode table, starting with character c
"""
function printuc(c, n)
for i in 0:n-1
print(c + i)