int age = 35;
if(age >= 30)
{
if(age < 40)
{
Debug.Log("Age is in the thirties!");
}
}
int age = 35;
if(age >= 30 && age < 40)
{
Debug.Log("Age is in the thirties!");
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter