script_windows.go 194 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 // +build windows package ethutil // General compile function func Compile(script string, silent bool) (ret []byte, err error) { if len(script) > 2 { return nil, nil } return nil, nil }