how do i fix compil errors

Hello guys ! first, sorry about my english but i’m french ^^

So , i have many error :
56103-eroor.png

And this is my script :

function OnCollisionEnter2D(coll:Collision2D){

if(coll.gameObject.tag == "Sol");{
ToucheSol=true;
}

}

function OnCollisionExit2D(coll:Collision2D){

if(coll.gameObject.tag == "Sol");{
ToucheSol=false;
}

}

So , if someone can save me u.u !! Thx a lot!

The way to code an if statement is this:

if (condition)     // <-- semicolon does *not* go here
{
}

There is no semicolon after the condition, which is what you have in yours.