Rolabogan
Rolabogan was an Argentine pop group. It consisted of Piru Sáez, Belén Scalella, María Fernanda Neil, Francisco Bass and Jorge Maggio, lead actors in telenovela El Refugio (de los Sueños). Although they have never officially split up, Rolabogan has recorded only one album.
Rolabogan | |
---|---|
Origin | Buenos Aires, Argentina |
Genres | Pop, Latin |
Years active | 2006 |
Labels | Sony BMG |
Associated acts | Erreway |
Past members | Francisco Bass Jorge Maggio María Fernanda Neil Piru Sáez Belén Scalella |
Discography
Year | Album | Label | Singles | Notes |
2006 | Rolabogan | Sony BMG | "Bailo" "No Voy a Parar" "Motivos" "Cada Puesta al Sol" |
gollark: Apparently Zig can get some optimizations out of making all integer overflow UB.
gollark: (mod 2^128 or so)
gollark: Fibonaccae WILL be computed.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.
See also
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.