tinygo/src/syscall/file_emulated.go
2021-12-10 09:50:38 +01:00

10 строки
201 Б
Go

// +build baremetal wasm
// This file emulates some file-related functions that are only available
// under a real operating system.
package syscall
func Getwd() (string, error) {
return "", nil
}