package ex01;

public class premierThread
{
	/**
	 * @param args
	 */
	static Spoutnik
		threadLent = new Spoutnik("Lent", 800, 25),
		threadRapide = new Spoutnik("Rapide", 500, 25);
	public static void main(String[] args)
	{
		threadLent.start();
		threadRapide.start();
		System.out.println("Fin de la public static void main");
	}
}
