Please enable JavaScript.
Coggle requires JavaScript to display documents.
GO (Variable, Method, Channels, Goroutines, Interfaces) - Coggle Diagram
GO
Variable
-
Zero value
-
-
-
interfaces and reference type(slice, pointer, map, channel, function) -> nil
-
-
Lifetime
local variable, use stack
global variable, use heap
-
-
-
-
-