"Testing vector arithmetic"

clear

check((1,2,3,4) + 10 == (11,12,13,14))
check((1,2,3,4)^2 == (1,4,9,16))
check(sum((1,2,3,4)) == 10)
check(product((1,2,3,4)) == 24)
