I want to learn go for security - it's apparently very quick and portable to compile and whatnot.
To compile a go file, simply run go build [file].go then execute the binary.
Resources
Project initialization
go mod init [name]-> initialize modulego run [file]-> running filego build [file]-> build some filego get golang.org/x/crypto/ssh@latest-> get some crypto shit
Random Tips
printis a low-level function that isn't typically used for low-level tasks. Usefmt.Println(value)instead.
← home