Files
tinygo/src/os/executable_other.go
T
2025-05-01 10:53:49 +02:00

10 lines
165 B
Go

//go:build (!linux && !darwin) || baremetal
package os
import "errors"
func Executable() (string, error) {
return "", errors.New("Executable not implemented")
}