further work on translation

This commit is contained in:
2026-03-02 14:43:14 +01:00
parent 457873a31b
commit c6609d15f5
12 changed files with 254 additions and 110 deletions

View File

@@ -1,5 +1,7 @@
---
engine: julia
julia:
exeflags: ["--color=yes"]
---
```{julia}
@@ -513,7 +515,7 @@ end
-------
The C semantics of `for(i=1; i<5; i++)` corresponds to the `while` loop:
```
```{.julia}
i = 1
while i<5
*loop body* # here one can also mess with i effectively