##
use constant FOO => "xyz",
BAR => "def",
BAZ => "abc";
# FOO returns qw/xyz BAR def BAZ abc/
# BAR and BAZ aren't defined as constants
####
use constant { FOO => "xyz",
BAR => "def",
BAZ => "abc" };