An American Nerd Greeting

void Start()
{
Debug.Log(“What’s up Nerds?”);
Debug.Log(“Pick a number, and keep it secret to everyone. I’ll guess it.”);
Debug.Log("The Highest Number is: " + max);
Debug.Log(“The Lowest Number is:” + min);
Debug.Log("Is your Number Above or Below " + guess + “?”);
Debug.Log(“Up - Above. Down - Below. Enter - Correct!”);
max = max + 1;
}

Privacy & Terms