Skip to content

Conversation

@ldez
Copy link
Member

@ldez ldez commented Dec 19, 2025

before
func _() {
	var pneumonoultramicroscopicsilicovolcanoconiosis string
	var floccinaucinihilipilification string

	switch myfunction(pneumonoultramicroscopicsilicovolcanoconiosis, floccinaucinihilipilification) {
	case "a":
		fmt.Println("a")
	}
}
after
func _() {
	var pneumonoultramicroscopicsilicovolcanoconiosis string
	var floccinaucinihilipilification string

	switch myfunction(
		pneumonoultramicroscopicsilicovolcanoconiosis,
		floccinaucinihilipilification,
	) {
	case "a":
		fmt.Println("a")
	}
}

@ldez ldez added the enhancement New feature or request label Dec 19, 2025
@ldez ldez force-pushed the feat/format-switch-tag branch from 4652a09 to b0a1002 Compare December 19, 2025 23:08
@ldez ldez force-pushed the feat/format-switch-tag branch from b0a1002 to ebb60e6 Compare December 19, 2025 23:08
@ldez ldez added this to the unreleased milestone Dec 19, 2025
@ldez ldez merged commit 2dc39cd into main Dec 19, 2025
8 checks passed
@ldez ldez deleted the feat/format-switch-tag branch December 19, 2025 23:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants