[5] Results
Golang : The Tao of importing package
golang import shortening-identifier packages taoJotting down this quick tutorial on how to use import
statement properly with formatted I/O - fmt package. However, this….... read more
Golang : Get own process identifier
golang getpid process-identifierThere are times when developer needs to know the own process identifier(PID) of the executing program during runtime. This is….... read more
Golang : Shortening import identifier
golang import shorteningIn Golang, we often import external packages from third party sources and ended with import statement that look like this….... read more
Golang : Implement getters and setters
golang get set identifier structBecause Golang does not provide automatic getters and setters, Go programmers will have to implement the getters and setters themselves.….... read more
Golang : When to use public and private identifier(variable) and how to make the identifier public or private?
golang public exported-identifier private function-declarationGot a Golang related question by my friend today, who is learning Golang for the first time. Her question is….... read more