dozn
dozn
### Checklist - [X] I have searched the [issue tracker](https://github.com/fyne-io/fyne/issues) for open issues that relate to the same feature, before opening a new one. - [X] This issue only relates...
### Checklist - [X] I have searched the [issue tracker](https://github.com/fyne-io/fyne/issues) for open issues that relate to the same problem, before opening a new one. - [X] This issue only relates...
I'd recommend the [BSD 3-Clause](https://choosealicense.com/licenses/bsd-3-clause/) (same as Odin).
## Context ```f# Enum :: enum { a, } main :: proc() { switch Enum { case .a: } } ``` Odin: dev-2024-10:7989d512a OS: Windows 11 Professional (version: 23H2), build...
## Context If you do `odin run . -vet-unused-procedures -vet-packages:main`, you will receive the error: `-vet-unused-procedures must be used with -vet-packages` It works correctly if you swap the flag order....
```f# package main Foo :: enum { a, } ``` Attempting to rename `a` will give you the prompt, but it won't be changed afterwards.
```f# package main main :: proc() { foo: Foo foo = .a } Foo :: enum { a = 1, } ``` If you select `.a` and rename it, the...
## Context ```go package main main :: proc() { x: U = []int{0} _ = x.([]int) } U :: union { []int } ``` ## Expected Behavior No panic. ##...
## Context ```f# package main S :: struct { data: map[U]int } U :: union { S } ``` I don't believe we allow the struct itself in which a...
I was typing away, and the call was declined as soon as the small pop-up appeared on the bottom-right corner of my Windows machine because I hit the spacebar at...