golang convert rune to string

package main

import (
    "fmt"
)

func main() {
    r := 'a' // Define a rune 'a'
    str := string(r) // Convert the rune 'a' to a string
    fmt.Println(str) // Print the converted string
}