Created
January 14, 2018 00:35
-
-
Save titsuki/86b7854102f0a30a7db02a8e96940b82 to your computer and use it in GitHub Desktop.
input.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$emotion = "awesome"; | |
echo "PHP is " . $emotion . "\n"; | |
$emotion = $emotion . "st"; | |
echo "Perl 6 is ". $emotion . "\n"; | |
function greet($name) { echo "Good day, " . $name . "\n"; } | |
greet("Lena"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment