```>>> listOf('a','b','c') == listOf('a',...
# getting-started
b
Copy code
>>> listOf('a','b','c') == listOf('a','b','c')
true
>>> listOf('a','b','c') == listOf('a','b','d')
false
>>>