UC0001 ';' error comes when i run the code in unity

#pragma strict

function Start () {

}

function Update () {
 OnGUI();
}
function OnGUI()
{
	if(GUI.Button(new Rect(100,100,100,100) , "Android")){
		AndroidJavaClass jc = new AndroidJavaClass("com.example.com.shona.izzanaqvi");
			AndroidJavaObject jo = jc.GetStatic("currentActivity");
			jo.Call("Launch");
		}
	}

this is my code and error is on line 13 and 14

You are mixing C# and Javascript syntax.