Welcome to new things

[Technical] [Electronic work] [Gadget] [Game] memo writing

pointer

Notes on things I got stuck on in Go language (value passing and pointer passing)

I started Golang. Golang uses pointers. Since Golang is historically a new language, I thought that I could just write code without being aware of pointers and it would work fine, but I was naive... The pointer itself is common, and if you…

Notes on things I got stuck on in Go language (slice, map, string)

I started Golang. Golang, like C, has a simple syntax and data structure, but it also incorporates advanced concepts to increase productivity. And for that reason, Golang has some slightly tricky syntax. However, without knowing them, I ma…

Notes on things I got stuck on in Go language (classes and inheritance)

I started Golang. When I started, I found that Golang is designed to be as simple as possible in its syntax and as simple in its code as possible. And for that reason, Golang has some slightly tricky syntax. However, without knowing them, …

Note on things I got stuck on in Go language (no arrow operator in pointer)

I started Golang. When I started, I found that Golang is designed to be as simple as possible in its syntax and as simple in its code as possible. And for that reason, Golang has some slightly tricky syntax. However, without knowing them, …