Tushar Jadhav

package main

import (
    "fmt"
)

func main() {
    // Step 1: Declare a variable named "name" of type string and assign the value "Tushar Jadhav" to it.
    name := "Tushar Jadhav"

    // Step 2: Use the fmt package to print the value of the "name" variable.
    fmt.Println("Name:", name)

    // Step 3: Declare a variable named "age" of type int and assign the value 25 to it.
    age := 25

    // Step 4: Use the fmt package to print the value of the "age" variable.
    fmt.Println("Age:", age)

    // Step 5: Declare a variable named "isStudent" of type bool and assign the value true to it.
    isStudent := true

    // Step 6: Use the fmt package to print the value of the "isStudent" variable.
    fmt.Println("Is Student:", isStudent)
}