Files
kong/guesswidth.go
Alec Thomas 8469b5cc3c chore: minor tweak for tinygo
There are still reflection issues, but it's a step.
2025-06-30 10:56:36 +10:00

10 lines
179 B
Go

//go:build tinygo || appengine || (!linux && !freebsd && !darwin && !dragonfly && !netbsd && !openbsd)
package kong
import "io"
func guessWidth(w io.Writer) int {
return 80
}