#!/usr/bin/perl $foo = "hello"; $f2 = '$foo'; $f3 = "$foo"; print "$f2\n"; print "$f3\n"; #### $foo hello