-
## Context
```
$ odin report
Where to find more information and get into contact when you encounter a bug:
Website: https://odin-lang.org
GitHub: https://github.com/odin-lang/Odin/issues
…
-
## Context
Odin: dev-2023-12:252fd0e92
OS: Windows 11 Home Basic (version: 22H2), build 22621.2861
CPU: 13th Gen Intel(R) Core(TM) i5-13600K
RAM: 32475 MiB
Using Plays…
-
```
for (a...b) |x, index| {
...
}
```
Where `a` and `b` can be chars, integers, anything that can define a range. This is also better syntax IMHO than:
```
{var i = 0; while (i < n; i …
-
Java 17 + Kotlin 1.7 + Mockk 1.12.4/Spring Mockk 3.1.1
```bash
java.lang.InstantiationError: com.example.demo.UpdateAccountResult
at jdk.internal.reflect.GeneratedSerializationConstructorAcc…
-
## Context
I believe there is a bug in the implementation of `slice.binary_search_by`.
https://github.com/odin-lang/Odin/blob/31b1aef44e1b0178f10f5faa62ceedddda56667b/core/slice/slice.odin#L173-L1…
-
Please add RSS for https://odin-lang.org/news so we can follow
-
### Describe the bug
Yesterday I realized that nvim crashes when I delete (`dd`) lines in a `` block in a svelte file. Sadly I cannot find an error message, nvim just drops back to the shell.
I ba…
-
In the Odin Overview in this section:
It states:
```
Array access is always bounds checked (at compile-time and at runtime).
```
This is not true, it is not **always** checked. For example the…
-
### Describe the highlighting problem
Python staticmethod, classmethod, and property are builtin functions usable as decorators and they should have same highlighting.
### Example snippet that c…
-
```odin
package main
foo :: proc(_: rawptr) {}
main :: proc()
{
x//