How do I make this output true and not false:
{item 1 of {4}, item 1 of {5}} = {4, 5}
I know you can do this…
{4, 5} = {4, 5}
…but I need to do something more complex.
Is that possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It probably has to do with the binding of the
=operator, e.g. it gets evaluated before the lhs and rhs expressions are evaluated.For example, this is
true: