golang evaluated but not used

package main

import "fmt"

func main() {
    // Evaluates the result of the expression 2 + 3, but the result is not used or stored
    2 + 3

    // Prints the string "Hello, World!" to the standard output
    fmt.Println("Hello, World!")
}