What is the most concise programming language?
J, a descendant of APL.
Sample J implementation of quicksort (whitespace for clarity):
quicksort =: (($:@(<#[) , (=#[) , $:@(>#[)) ({~ ?@#)) ^: (1<#)
APL, hands down.
Game of life in one line:
(source: catpad.net)