Odin icon indicating copy to clipboard operation
Odin copied to clipboard

Odin Programming Language

Results 744 Odin issues
Sort by recently updated
recently updated
newest added

## Context Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions. * Operating System & Odin...

## Context Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions. * Operating System & Odin...

## Context #### Operating System & Odin Version: Odin: dev-2022-08:081e36c9 OS: Fedora Linux 35 (Workstation Edition), Linux 5.18.17-100.fc35.x86_64 CPU: Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz RAM: 15847 MiB ## Expected...

bug
linux
llvm-bug
llvm-backend
replicated
stale

Odin's `wstring_to_utf8` searches the string for the first occurrence of `0` and chops off everything after it, which prevents certain kinds of utf8 strings from being formed. In utf8, null...

## Context The following code crashes the compiler ``` import "core:runtime" f :: proc(ti: ^runtime.Type_Info) -> bool { switch ti.id { case u8: return true case byte: return false case:...

stale

## Context * linux mint * odin version dev-2021-10:06f47621 ## Expected Behavior Expected `time.sleep` to not sleep at all when given negative duration ## Current Behavior Sleeps forever when given...

Odin `dev-2021-10:eebf49ba` ```odin fn_ : proc(_: int) //proc pointer fn :: proc(_: $T ) {} fn_ = fn //works if true do fn_ = fn else do fn_ = fn...

stale

## Context ``` main :: proc() { quat : linalg.Quaternionf32; quat = quaternion(1, 0, 0, 0); pitch, yaw, roll := linalg.pitch_yaw_roll_from_quaternion(quat); quat2 := linalg.quaternion_from_pitch_yaw_roll(pitch, yaw, roll); fmt.printf("quat = %v\nquat2 =...

## Context * Operating System: windows odin.exe version dev-2021-10:3337d386 ## Expected Behavior The identity quaternion should show real part 1.0 in the debugger. ## Current Behavior The identity quaternion shows...

## Context The version of raylib is 3.7. The version of raygui is the latest version. Windows 10 odin version dev-2021-10-nightly:3337d386 ## Expected Behavior I expect to be able to...