<?php
	$texto = 'imprime texto';
	echo '$texto'; // saída -> $texto
	echo PHP_EOL;
	echo "$texto"; // saída -> imprime texto
