Skip to content

Instantly share code, notes, and snippets.

@Juddling
Created July 22, 2015 18:50
Show Gist options
  • Select an option

  • Save Juddling/5ca14b139df3495dd465 to your computer and use it in GitHub Desktop.

Select an option

Save Juddling/5ca14b139df3495dd465 to your computer and use it in GitHub Desktop.
<?php
// snippet one
function combine($x, $y) {
return $x + $y;
}
echo combine(2, 4);
// snippet two
function combine($x, $y)
{
return $x * $y;
}
echo combine(2, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment