Rugby union in Costa Rica
Rugby union in Costa Rica is a minor, but growing sport.
Rugby union in Costa Rica | |
---|---|
The Costa Rican national side. | |
Country | Costa Rica |
National team(s) | Costa Rica |
Governing body
The governing body is the Federación de Rugby de Costa Rica which is not currently affiliated to the IRB.
History
In 2007, Costa Rica helped introduce the game into Guatemala, when the Jules Verne School in Guatemala and Liceo Francés from Costa Rica played one another.[1]
In December, 2007, Costa Rica A & B sides participated in the First Central American Rugby cup. The other competing teams were Panama and Guatemala. Costa Rica A came first in this tournament, Panama 2nd, Guatemala 3rd, and Costa Rica B 4th.
gollark: It's in unsafe™ C, so you could make a mistake and doom all mankind.
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
See also
References
External links
- (in Spanish) Rugby Costa Rica
- Guatemala's Rugby Story
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.