odin-lang/odin-lang.org

Overview contains a type "float", which isn't shown in Basic types

skrshe opened this issue · 0 comments

In iterating through slices of structs by value or by reference f is declared to type float which isn't shown in Basic types
and is undeclared when compiling a simple test case.

Iterating through slices of structs by value or by reference #

Foo :: struct {
        f: float,
        i: int,
}
...