#!/usr/local/bin/perl print "Content-type: text/html\n\n"; $text = 'Welt'; print "Hallo $text"; # Ausgabe: Hallo Welt print "<br>"; print 'Hallo $text'; # Ausgabe: Hallo $text