Someone mentioned Scheme - I just started learning it while reading the book Structure and Interpretation of Computer Programs (SICP). I've used Scheme for probably around 5 minutes and already I feel comfortable with the syntax. It took me literally a minute to learn how to write expressions and how to define functions:
1 2
(define (square x) (* x x))
(define (sum-squares x y) (+ (square x) (square y)))