DEV Community

Discussion on: Trying to learn Golang, any tips ?

Collapse
 
codewander profile image
codewander • Edited

For the first week or two, I also like to do easy level hackerrank problems with the golang cheatsheet in hand, to practice internalizing the syntax and standard library.

I also picked out some libraries I found interesting (e.g. yourbasic/graph) and practiced using them with go's playground. The playground let's you import external libraries, you just need to use a special syntax to add the library.

Collapse
 
fadhilsaheer profile image
Fadhil âš¡

Thanks for the tip, I guess this might be the better way to get hands on with go.