##
$ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print "${typ}::$dat"'
abc::def
####
$ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print "$typ\::$dat"'
abc::def
####
$ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print $typ."::".$dat'
abc::def