a = 1
1
b = 1
1
c = 2
2
[d, e] = [1, 2]
[1, 2]
{1, 2} = {f, g}
{1, 2}
? = 1
1
to_lisp(quote (a = 1) && (b = 2))
[operator_and, [operator_paren, [operator_equal, a, 1]], [operator_paren, [operator_equal, b, 2]]]
if (a = 1) && (b = 2) do
{a, b}
end
{1, 2}