Something about Go strings that you should know
Jun 10, 2019 · What will be the output of the following code snippet? package main import ( "fmt" ) func main() { var s = "abcdè" fmt.Println(len(s)) } The string s has 5 characters and therefore the output should be 5 right? or Is it 🤔 If we try ru...
SMSébastien and 1 more commented
