Learner Scripter... trying to make a basic move function.

ok so my script looks like this so far

using UnityEngine;
using System.Collections;

public class Move : MonoBehaviour 
{
	public float MoveSpeed = 10f;

	void start ()
	{
	}
	void Update ()
	{
		if (Input.GetKeyDown (KeyCode.W)) {
			Transform.Translate (Vector3.forward * MoveSpeed * Time.deltaTime)
		}
	}
}

njow when I try to run the script in Unity it comes up with :
Assets/Move.cs(15,17): error CS1525: Unexpected symbol `}’
and
Assets/Move.cs(18,1): error CS8025: Parsing error

please does anybody know what I have done wrong?

Cheers guys. Have it sussed now. Had a couple of syntax errors. Then I had to close the script file in monodevelope and worked fine after that.