bool to string golang

package main

import (
    "fmt"
    "strconv"
)

func main() {
    // Step 1: Declare a boolean variable
    booleanVariable := true

    // Step 2: Convert the boolean variable to a string using strconv.FormatBool
    stringValue := strconv.FormatBool(booleanVariable)

    // Step 3: Print the original boolean value and the converted string value
    fmt.Println("Original boolean value:", booleanVariable)
    fmt.Println("Converted string value:", stringValue)
}