Tetralux

Results 14 issues of Tetralux

- Operating System & Odin Version: Windows x64, `odin.exe version dev-2022-04:426a6a95` ```odin package test import "core:os" import "core:fmt" S :: struct { a, b, c: os.Handle, } s := S{...

stale

* Operating System & Odin Version: Windows x64, `odin.exe version dev-2022-04:426a6a95` ```odin package test import "core:os" f :: proc(cmd: string, stdout := os.stdout) {} main :: proc() { f("hi") }...

stale

* Operating System & Odin Version: Windows x64, `odin.exe version dev-2022-03:72ae0617` ```odin package bug import "core:fmt" I :: distinct i128 B :: distinct bool U :: union { I, B,...

bug
frontend
stale

* Operating System & Odin Version: Windows x64, `odin.exe version dev-2022-03:72ae0617` ```odin package bug import "core:fmt" import "core:runtime" S :: struct { s: string, f: f32, i: i64, b: u8,...

stale

* Operating System & Odin Version: Windows x64, `odin.exe version dev-2022-03:bff5a67f` ```odin package test import "core:fmt" main :: proc() { Slice16 :: #relative(u16) []byte a := [4]byte{1, 2, 3, 4}...

* Operating System & Odin Version: Windows x64, `odin.exe version dev-2022-02:093b2288` ```odin package test import "core:fmt" main :: proc() { f :: proc($x: proc(int)) { x(1) } f(proc(i: int) {...

stale

Currently, you are not allowed to do this: ```odin Result :: struct { value: int, } f :: proc() -> (result: Result = ---) { result.value = 44 return }...

stale

Developed by [Bruce Schneier](https://www.schneier.com/blog/about/) et al. [Threefish ](https://www.schneier.com/academic/skein/threefish.html) is a fast, tweakable block cipher. [Skein ](https://www.schneier.com/academic/skein/) is a secure hash function which uses Threefish. The design specification for the Threefish...

Editors: - Sublime [effected] - VSCode [unknown] --- In the following image: - `Distinct_Type` isn't highlighted as a type. - `util.d` is considered a `u32`. ![image](https://user-images.githubusercontent.com/1348560/147713161-74608f5d-bf84-4634-8878-2803bc841126.png) I'm concerned that this...

Windows x64, edbf2bf56f9c3cac0b996ca9f4fdccfe80637929 Odin version output: `odin version dev-2021-09:edbf2bf5` --- I have a debug printing function which is supposed to be a no-op, unless a `-define` is passed. The following...