Skip to content

Instantly share code, notes, and snippets.

@Gvbriel
Created January 13, 2019 13:51
Show Gist options
  • Save Gvbriel/165b90fa0858e75e757a3aa866bdc9c6 to your computer and use it in GitHub Desktop.
Save Gvbriel/165b90fa0858e75e757a3aa866bdc9c6 to your computer and use it in GitHub Desktop.
isLowerCase
bool FBullCowGame::IsLowerCase(FString Word) const
{
for (auto Letter : Word)
{
if (isupper(Letter))
{
return false;
}
else
{
return true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment