1980 Tournament of the Americas squads

This article displays the rosters for the participating teams at the 1980 Tournament of the Americas played in San Juan, Puerto Rico from April 18 to April 25, 1980.

 Argentina

  • 4 Jorge Martín
  • 5 Gustavo Aguirre
  • 6 Mauricio Musso
  • 7 Carlos Raffaelli
  • 8 Carlos Romano
  • 9 José Luis Pagella
  • 10 Adolfo Perazzo
  • 11 Miguel Cortijo
  • 12 Eduardo Cadillac
  • 13 Carlos González
  • 14 Gabriel Milovich
  • 15 Luis González
  • Head coach: Miguel Ángel Ripullone

 Brazil

  • 4 Zé Geraldo
  • 5 Fausto
  • 6 José Carlos
  • 7 Carioquinha
  • 8 Wagner
  • 9 Marquinhos
  • 10 Gilson
  • 11 Marcel
  • 12 Marcelo
  • 13 Luiz Gustavo
  • 14 Oscar
  • 15 Robertão

 Canada

 Cuba

  • Head coach: Ernesto Díaz

 Mexico

 Puerto Rico

 Uruguay

  • Head coach: Ramón Etchamendi

Bibliography

  • Mexico 2015 FIBA Americas Championship Guía Histórica 1980–2015 (in Spanish). FIBA. 2015. p. 9–13.
gollark: And it mutates some shared state.
gollark: As you can see, it has to explicitly manage a "waitgroup" for synchronization and whatnot.
gollark: ```go log.Println("Fetching feeds...") var feeds []*rss.Feed var wg sync.WaitGroup for _, source := range sources { wg.Add(1) src := source go func() { defer wg.Done() feed, err := rss.Fetch(src.String()) if err != nil { log.Printf("Error fetching %s: %s", src.String(), err.Error()) return } feeds = append(feeds, feed) log.Printf("Fetched %s", feed.Title) }() } wg.Wait()```So here is something which is meant to fetch a bunch of RSS feeds in parallel.
gollark: Somewhat? There doesn't seem to be a better way to do it.
gollark: Hold on, I worked on a tiny bit of Go code, I'll dredge some up as a sample.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.