Compute parentheses expression

Improve #5 by computing parentheses expression.

Do not forget: this operation picks the first element of a "tuple". For example

local function test(...)
    print('first:', (...))
end

test(1, 2, 3) -- prints 'first: 1'