Skip to content

Instantly share code, notes, and snippets.

@mkock
Created August 20, 2020 18:55
Show Gist options
  • Select an option

  • Save mkock/8e003ac9ba16ec54e20773bf442931ee to your computer and use it in GitHub Desktop.

Select an option

Save mkock/8e003ac9ba16ec54e20773bf442931ee to your computer and use it in GitHub Desktop.
Bus Ride, code snippet 03
// Bus carries Passengers from A to B if they have a valid bus ticket.
type Bus struct {
name string
Passengers map[string]Passenger // Map of SSN to Passengers
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment