When Ben describes the difference between parameters and arguments he mentions that parameters are when you are defining a method(function) and arguments are when you are calling a method, but the example he gives withEGuessStatus FBullCowGame::CheckGuessValidity(FString Guess) const is also being defined, or am I mistaken? If so, could someone explain the difference.
Nevermind I understand it now, defining the variable in the function itself is a parameter, and an argument is when the variable is used within the function, correct?