mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 02:57:46 +00:00
f0936ffccb
For now this is a stub for everything but linux, which is a slightly modified copy of the official implementation. Should address #1778.
10 lines
138 B
Go
10 lines
138 B
Go
// +build !linux
|
|
|
|
package os
|
|
|
|
import "errors"
|
|
|
|
func Executable() (string, error) {
|
|
return "", errors.New("Executable not implemented")
|
|
}
|