Arseniy Khvorov
Arseniy Khvorov
## Context Odin: dev-2022-03:ae644118 OS: Windows 10 Professional (version: 21H1), build 19043.1586 CPU: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz RAM: 16338 MiB ### Steps to Reproduce ```odin //test.odin package main...
## Context Odin: dev-2022-03:50503cb4 OS: Windows 10 Professional (version: 21H1), build 19043.1586 CPU: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz RAM: 16338 MiB ## Bug This code ```odin package main import...
## Context Odin: dev-2022-02:1c57d1c0 OS: Windows 10 Professional (version: 21H1), build 19043.1466 CPU: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz RAM: 16338 MiB ## Bug If I run the code below...
## 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...
Windows 10 tends to create windows with a white background by default (on window creation, before the program had a chance to draw anything itself). The default background can be...
Before formatting ```d void temp(int v1, int v2) {} void main() { temp(v1: 1, v2: 2); temp( v1: 1, v2: 2, ); } ``` After formatting ```d void temp(int v1,...