Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created October 26, 2020 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todorok1/f41dcb246c7059e7dadcf21a85cb6b4e to your computer and use it in GitHub Desktop.
Save todorok1/f41dcb246c7059e7dadcf21a85cb6b4e to your computer and use it in GitHub Desktop.
if文の分岐ごとにログを出力する
void Start()
{
int money = 100;
if (money >= 100)
{
Debug.Log("ジュースを買うよ");
}
else
{
Debug.Log("ジュースを買えない……。");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment