- or download this
<foo>hah!</foo>
- or download this
print font( { color => "red" }, "This text is in red");
- or download this
<font color="red">This text is in red</font>
- or download this
span({style=>"color:red"}, "This text is in red");
- or download this
print p("I like <font color='red'>red</font> text");
# or
print p("I like ", font({color=>"red"}, "red"), " text");
- or download this
print <<END_OF_TEXT;
<p>I like <font color="red">red</font> text.</p>
END_OF_TEXT
- or download this
perl -e 'print "How sweet does a rose smell? "; chomp ($n = <STDIN>);
+$rose = "smells sweet to degree $n"; *other_name = *rose; print "$oth
+er_name\n"'