never back down

package main

import (
    "fmt"
)

func main() {
    // Define a constant named "message" with a string value
    const message = "Never back down"

    // Print the message to the console
    fmt.Println(message)
}