github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/src/os/executable_other.go (about)

     1  //go:build !linux || baremetal
     2  
     3  package os
     4  
     5  import "errors"
     6  
     7  func Executable() (string, error) {
     8  	return "", errors.New("Executable not implemented")
     9  }