Question by
Karaka · Sep 07, 2015 at 12:19 AM ·
error-cs1525
Error CS1525: Unexpected Symbol '}'
Hello. I am following a Youtube tutorial on how to start unity as a beginner, and an error popped up on the screen. I tried to find my mistake but it looked exactly like how it was supposed to be.
Script:
using UnityEngine; using System.Collections;
public class Demo : MonoBehaviour { public int health;
void Start()
{
print("Player health: " + health)
}
}
Video: (https://www.youtube.com/watch?v=sxMHM_ONkI8) at 4:25
Please help,
-SK
Comment