Skip to content

Instantly share code, notes, and snippets.

@kobus1998
Created August 5, 2021 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kobus1998/7d27afc440c056cc5d826dd66f272393 to your computer and use it in GitHub Desktop.
Save kobus1998/7d27afc440c056cc5d826dd66f272393 to your computer and use it in GitHub Desktop.
very useful program to sum a bit
<?php
$i = (fn($x) => (function ($x) {
return (fn($x) => $x + 1)($x + 1);
})($x + 1));
echo $i(1); // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment