On Sun, May 22, 2022 at 1:20 PM Sven Schreiber <svetosch(a)gmx.net> wrote:
maybe this is again something which isn't really supported, but while
using the new "end" keyword for indexing into strings works generally
fine, there are problems if I'm using non-ASCII characters like German
Umlaute:
? s = "motorhead"
? s[1:end]
motorhead
? s = "motörhead"
? s[1:end]
Indexwert 10 außerhalb der Grenzen
( = out of bounds)
Thanks for the report; fixed in git.
Allin