"Believe you can and you're halfway there." - Theodore Roosevelt
-
Got Selected for Null - Infrastructure Security Study group --> Read more about the same here.
-
Blog: Tooooo goooodddd blogs to [MUST] read. Brain-fucked. Read it, Period.
-
GoLang: Tim's YouTube Playlist. 2 out of 22 videos.
-
Golang Tutorial #1 - An Introduction to Go Programming:
- Go is build around speed and concurrency.
- Imperative programming language.
- VsCode overview and downloading go extensions.
- Writing first Go code: Check here.
- Anything between ' ' is character not a string. String is collection of characters and has to be between " ".
go run
command to run any of go lang code.go build
command to compile any of go lang file/code. Also with extention of.exe
and can be runned by double-clicking it or by./nameoffile.exe
if on linux. And it does not need Go installed to run the golang file.
-
Golang Tutorial #2 - Variables & Data Types
- Variable is way of storing and accessing information.
- If a type of variable is declared it cannot be changed afterwards until or unless it is redefined.
- Name of the valid variable can only include - Numbers,letters & underscores. Also it cannot start with numbers
- Syntax:
var name type
- Go Data Types
- Booleans - true is 1 and false is 0
-