How to assign to string the japanese word ネコ in Go

1 Answer

0 votes
package main

import (
    "fmt"
)

func main() {
    str := "ネコ" // cat

    fmt.Printf("%s\n", str)
}


/*
run:

ネコ

*/

 



answered Apr 19, 2025 by avibootz
...