Trophée d'Or Féminin
Trophée d'Or Féminin is a women's staged cycle race which takes place in France.[1]
Race details | |
---|---|
Region | France |
Discipline | Road |
Type | Stage race |
Web site | www |
History | |
First edition | 1994 |
Editions | 22 (as of 2015) |
First winner | |
Most wins | (2 wins) |
Most recent |
Overall winners
Year | Winner | Second | Third |
---|---|---|---|
1994 | |||
1995 | Elena Koliasseva | ||
1996 | |||
1997 | |||
1998 | |||
1999 | |||
2000 | |||
2001 | |||
2002 | |||
2003 | |||
2004 | |||
2005 | |||
2006 | |||
2007 | |||
2008 | |||
2009 | |||
2010 | |||
2011 | |||
2012 | |||
2013 | |||
2014 | |||
2015 |
Jerseys
gollark: String center: this is pretty CC-specific.
gollark: Table length: `#table`.
gollark: Any specific thingies it's missing?
gollark: You can use luadash.
gollark: ```rust#[macro_use] extern crate serenity;extern crate dotenv;use serenity::client::{Client, EventHandler};use serenity::framework::standard::StandardFramework;use std::env;struct Handler;impl EventHandler for Handler {}pub fn main() { dotenv::dotenv().ok(); // Load bot token from environment, let mut client = Client::new(&env::var("DISCORD_TOKEN").expect("token unavailable"), Handler) .expect("Error creating client"); client.with_framework(StandardFramework::new() .configure(|c| c.prefix("~")) .cmd("ping", ping)); if let Err(why) = client.start() { eprintln!("An error occured: {:?}", why); }}command!(ping(_context, message) { let _ = message.reply("Pong!");});```Fun with discord bots, and yes this is literally the example code.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.