F9Uf / learn-rxgo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Learn RXGO

There is a list of Customer, and each Customer has a structure below:

type Customer struct {
	ID             int
	Name, LastName string
	Age            int
	TaxNumber      string
}

Our goal is need to perform the two following oerpations:

  • filter the customers whose age is below 18
  • enrich each customer with a tax number

About


Languages

Language:Go 100.0%