1
0
This repository has been archived on 2024-09-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PathFinding_in_Go/Person.go
2021-03-28 20:25:57 +01:00

9 lines
106 B
Go

package main
type Person struct {
FirstName string
LastName string
Age int
JobTitle string
}