Skip to content

Instantly share code, notes, and snippets.

@jwatzman
Created January 9, 2015 19:26
Show Gist options
  • Save jwatzman/6816a4d118190e5bbf10 to your computer and use it in GitHub Desktop.
Save jwatzman/6816a4d118190e5bbf10 to your computer and use it in GitHub Desktop.
<?hh // strict
type t = shape(
'x' => ?(function(int):int)
);
function f(t $t): int {
$func = $t['x'];
if (!is_null($func)) {
return $func(1);
} else {
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment