Skip to content

Instantly share code, notes, and snippets.

@samuelsonbrito
Created March 21, 2018 18:35
Show Gist options
  • Save samuelsonbrito/90a5274df39b979e2002fc0fda4685fc to your computer and use it in GitHub Desktop.
Save samuelsonbrito/90a5274df39b979e2002fc0fda4685fc to your computer and use it in GitHub Desktop.
Exemplo de programação Funcional
<?php
$calculadora = function($funcao, $x, $y){
return $funcao($x, $y);
};
$soma = function($x, $y){
return $x + $y;
};
$divisao = function($x, $y){
return $x / $y;
};
echo $calculadora($soma,1,2);
echo '<br>';
echo $calculadora($divisao,4,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment