AS
подскажите, как победить https://goplay.space/#9w03M5pIz5E
хочу чтобы кавычки отображались как кавычки
text/template
, если вы не собираетесь добавлять разметкуSize: a a a
AS
text/template
, если вы не собираетесь добавлять разметкуDP
DS
D
DS
VM
goroutine profile: total 1797
687 @ 0x43122f 0x440cb8 0x7118a3 0x45e7f1
# 1x7118a2 net/http.(*persistConn).writeLoop+0x112 /usr/local/go/src/net/http/transport.go:1978
657 @ 0x43122f 0x440cb8 0x71059a 0x45e7f1
# 2x710599 net/http.(*persistConn).readLoop+0x959 /usr/local/go/src/net/http/transport.go:1800
Д
O
\file_searchВ каждом файле определенная функция
- file_search.go
- file_search_unix.go
- file_search_windows.go
main.go
lookupUserprofilePath(упрощенная версия без package и прочего)
// +build linux freebsd netbsd openbsdfile_search_windows.go
func lookupUserprofilePath(path string) string {
return filepath.Join("~", path)
}
// +build windowsfile_search.go
func lookupUserprofilePath(path string) string {
return filepath.Join("%userprofile%", path)
}
func LookupUserprofilePath(path string) string {main.go
return lookupUserprofilePath(path)
}
func main() {
fmt.Println(file_search.LookupUserprofilePath("hello")
}
Получаю ошибку:file_search\file_search_windows.go:6:6: lookupUserprofilePath redeclared in this block
previous declaration at file_search\file_search_unix.go:6:41
Д
\file_searchВ каждом файле определенная функция
- file_search.go
- file_search_unix.go
- file_search_windows.go
main.go
lookupUserprofilePath(упрощенная версия без package и прочего)
// +build linux freebsd netbsd openbsdfile_search_windows.go
func lookupUserprofilePath(path string) string {
return filepath.Join("~", path)
}
// +build windowsfile_search.go
func lookupUserprofilePath(path string) string {
return filepath.Join("%userprofile%", path)
}
func LookupUserprofilePath(path string) string {main.go
return lookupUserprofilePath(path)
}
func main() {
fmt.Println(file_search.LookupUserprofilePath("hello")
}
Получаю ошибку:file_search\file_search_windows.go:6:6: lookupUserprofilePath redeclared in this block
previous declaration at file_search\file_search_unix.go:6:41
// +build windows
где указан?OJ
ВС