“сделать” Ответ

иди отложить

A defer statement defers the execution of a function until the surrounding function returns.

The deferred call's arguments are evaluated immediately, but the function call is not executed until the surrounding function returns.
DevLorenzo

сделать

//Allocates a zeroed array and returns a slice that refers to that array:
a := make([]int, 5)  // len(a)=5
//		make(map[keyType]valueType)  Allocate a map with make
map1 := make(map[string]int)
Armandres

Ответы похожие на “сделать”

Вопросы похожие на “сделать”

Больше похожих ответов на “сделать” по Go

Смотреть популярные ответы по языку

Смотреть другие языки программирования