|
|
|
|
|
by steveklabnik
2554 days ago
|
|
On a super pedantic level, "parameters" are the names that you write in the function definition, and "arguments" are the values you pass as parameters. def name_length(person)
steve = Person.new
name_length(steve)
Here, 'person' is a parameter, and 'steve' is an argument.Most programmers use them interchangeably. |
|