My take on the Number Wizard greeting!

void start()
{
Debug.Log(“Oi lad, can i bum a ciggy? i mean welcome to number wizard!”);
Debug.Log(“Pick a number!”);
Debug.Log("The highest number you can pick is: " + max);
Debug.Log("The lowest number you can pick is: " + min);
Debug.Log("You better tell me if its higher or lower than: " + guess);
Debug.Log(“Push up = higher, Push down = lower, Push enter = correct”);
max = max + 1;
}

1 Like

Great looking code!

Privacy & Terms