My welcome code

void Start()
{
    Debug.Log("Welcome! Here I am... your number wizard!");
    Debug.Log("Pick a number! Just don't tell me what it is...");
    Debug.Log("The highest number you can choose is: " + iMax);
    Debug.Log("The lowest number you can choose is: " + iMin);
    Debug.Log("Tell me if your number is higher or lower then 500");
    Debug.Log("Push the up arrow for higher, down arrow for lower. Push Enter for correct");
    iMax = iMax + 1;
}
1 Like

Privacy & Terms