executable_other.mx raw

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