mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-09-10 22:49:30 +00:00
10 lines
165 B
Go
10 lines
165 B
Go
//go:build (!linux && !darwin) || baremetal
|
|
|
|
package os
|
|
|
|
import "errors"
|
|
|
|
func Executable() (string, error) {
|
|
return "", errors.New("Executable not implemented")
|
|
}
|