Fixed
Language
- Making subtubles of subtuples when using a non-zero start index now works as expected.
- e.g.
(1, 2, 3)[1..][1..]would previously panic.
- e.g.
Unclaimed project
Are you a maintainer of koto? Claim this project to take control of your public changelog and roadmap.
(1, 2, 3)[1..][1..] would previously panic.f = |a, b|
a + (b or 42)
You can write:
f = |a, b = 42|
a + b
x = [0]; (x[0] += 1) == 0 would previously evaluate to true.iterator.repeat has been fixed.PartialEq and PartialOrd impls for KString (#411)Full Changelog: https://github.com/koto-lang/koto/compare/v0.15.0...v0.15.1