@@ -0,0 +1,15 @@
package main
import (
"fmt"
"school-management/models"
)
func main() {
var student models.Student
student.FirstName = "Braeden"
student.LastName = "Sowinski"
student.Age = 16
student.DOB = "2005-04-26" //year-month-day
fmt.Print(student)
}
The note is not visible to the blocked user.