Removed unnecessary interpolation

Change double quotes to single quotes due  to no necessity of doing interpolation here. Basic example should just show basic display of hello world, without additional feature. it also has some performance difference
This commit is contained in:
Dawid Mazurek 2016-05-21 09:50:15 +02:00
parent 9f63e88962
commit 065cee4a2f

View File

@ -1,3 +1,3 @@
<?php
echo "Hello World";
echo 'Hello World';