First Commit

This commit is contained in:
SowinskiBraeden committed 2021-10-04 10:11:06 -07:00
commit 004641df4e
9 files changed
+210

No files matched your search

+15
View File
@@ -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)
}