import "fmt"
type Profile struct {
Name string
Position string
}
func main() {
p := Profile{
Name: "Adrian",
Position: "Data Engineer",
}
fmt.Printf("Hello, this is %s, the %s", p.Name, p.Position)
}
import "fmt"
type Profile struct {
Name string
Position string
}
func main() {
p := Profile{
Name: "Adrian",
Position: "Data Engineer",
}
fmt.Printf("Hello, this is %s, the %s", p.Name, p.Position)
}