Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
string
is a primitive type in Golang, which means a string value has no methods on it but instead you have to use built-in functions (e.g.,len
) or functions in other modules (e.g., thestrings