Help for this page

Select Code to Download


  1. or download this
    $ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print "$typ::$dat"'
    123def
    
  2. or download this
    $ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print "${typ}::$dat"'
    abc::def
    
  3. or download this
    $ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print "$typ\::$dat"'
    abc::def
    
  4. or download this
    $ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print $typ."::".$dat'
    abc::def