Back to the Future

using TimeMachine;
using TimeMachine.FluxCapacitor;
using Plutonium;

public class BackToTheFuture
{
    private TimeMachine delorean;
   
    BackToTheFuture()
    {
        delorean = new TimeMachine(1.21f);
    }
   
    public void Watch()
    {
        delorean.Travel(new DateTime(1955, 11, 5), "Hill Valley");
        Console.WriteLine("Great Scott!");
        delorean.RepairMachine();      
        delorean.Travel(new DateTime(1985, 10, 25), "Hill Valley");
    }
   
    public static void main(String[] args)
    {
        BackToTheFuture film = new BackToTheFuture();
        film.Watch();
    }
}
Vote up this code3