Olimpia
Olimpia may refer to:
Sports teams
- Club Atlético Olimpia, a sports club based in Montevideo, Uruguay
- Club Deportivo Olimpia, a football team based in Tegucigalpa, Honduras
- Club Olimpia, a sports club based in the city of Asunción, Paraguay
- Olímpia Futebol Clube, a football team from Brazil
- Olimpia Elbląg, a football team from Elbląg, Poland
- FC Olimpia Bălţi, a football team from Moldova
- FC Olimpia Satu Mare, a football team from Satu Mare, Romania
- FC Olimpia Volgograd, a football team from Volgograd, Russia
- Olimpia Milano, a basketball team based in Milan, Italy
- KK Olimpija, a basketball team based in Ljubljana, Slovenia
- Olimpia Basketball Club, a basketball team based in Venado Tuerto, Argentina
Other uses
- Olimpia Awards, the most important sports awards in Argentina
- Olimpia Sports Hall, an indoor arena in Ploiești, Romania
- Olimpia, Greater Poland Voivodeship (west-central Poland)
- Olímpia, a city in the Brazilian state of São Paulo
- Olimpia, a character in E.T.A. Hoffmann's short story "The Sandman"
gollark: How SHOULD I do it?
gollark: ↑ you, as a result
gollark: ```rustfn matches(expr: &Value, condition: &Value) -> Option<Bindings> { match (expr, condition) { (Value::Num(a), Value::Num(b)) => if a == b { Some(HashMap::new()) } else { None }, (Value::Call(efn, eargs), Value::Call(rfn, rargs)) => { if efn != rfn { return None } if rargs.len() != eargs.len() { return None } let mut out_bindings = HashMap::new(); for (rarg, earg) in rargs.iter().zip(eargs) { match matches(earg, rarg) { Some(x) => out_bindings.extend(x), None => return None } } Some(out_bindings) }, (_, Value::Identifier(b)) => Some(vec![(b.clone(), expr.clone())].into_iter().collect()), _ => None }}```
gollark: You fell right into my trap, actually.
gollark: ↓ wrong
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.