I’m having some trouble understanding const. For example,
void UBullCowCartridge::OnInput(const FString& Input)
doesn’t the variable Input change every time we press enter? How is it constant?
Or here,
bool UBullCowCartridge::IsIsogram(FString Word) const
How is it const? This function checks many strings if they’re isograms.