So here are the errors in question
Assets/scripts/NumberWizard.cs(29,1): error CS8025: Parsing error
Assets/scripts/NumberWizard.cs(19,9): error CS1525: Unexpected symbol `)’
and here is the script in question
using UnityEngine;
using System.Collections;
public class NumberWizard : MonoBehaviour {
// Use this for initialization
void Start () {
print ("welcome to Number Wizard");
print ("Pick a number but don't tell me!!");
int max = 1000;
int min = 1;
print ("the biggest number you can pick is " + max);
print ("the smallest number you can pick is " + min);
print ("is the number higher or lower than 500?");
print ("up arrow means higher, down arrow means lower, enter means equal");
)
}
// Update is called once per frame
void Update () {
if (Input.GetKeyDown(KeyCode.UpArrow)) {
print ("you pushed the down arrow");
}
}
}
I have no idea how it keeps happening.