IHYPRESS.NET
PERL
HOME | ASP | C | CSS | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
Earn Free Bitcoin
Perl ❯ String Concatenation
<10>
#!/usr/bin/perl -wT use CGI ':standard'; use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use strict; my $a = 3; my $b = '4'; my $c = 'a'; print header(); print start_html(-title => "Concatenation"); print "<div style='color:#006666';>"; print $a . $b; print "<br>"; print $a . $c; print "<br>"; print $b . $c; print "<br>"; print $a + $b; print "<br>"; print $a + $c; print "<br>"; print $b + $c; print "<br>"; print "</div>"; print end_html();
Concatenation
34
3a
4a
7
3
4
COPYRIGHT © 2015-2024 IHYPRESS.NET. A DIVISION OF IHY PRESS. ALL RIGHTS RESERVED.