Skip to content

Instantly share code, notes, and snippets.

@titsuki
Created January 14, 2018 00:35
Show Gist options
  • Save titsuki/86b7854102f0a30a7db02a8e96940b82 to your computer and use it in GitHub Desktop.
Save titsuki/86b7854102f0a30a7db02a8e96940b82 to your computer and use it in GitHub Desktop.
input.php
$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