1
0

Initial Commit

This commit is contained in:
2021-03-28 20:25:57 +01:00
commit 3a721ac0b4
9 changed files with 127 additions and 0 deletions

8
Person.go Normal file
View File

@@ -0,0 +1,8 @@
package main
type Person struct {
FirstName string
LastName string
Age int
JobTitle string
}