echo can take multiple parameters
echo 'one', 'two', 'three', "\n";
2. print statement returns 1
$print_returns = print('some text')."\n";
echo "print_returns Value: $print_returns" . "\n";
echo prints 1 after print statement is executed
echo print "123", "\n";
3. echo is a little bit faster than print