Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created December 15, 2021 19:55
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 Whateverable/354af059eaea4accb732553e8ec17de0 to your computer and use it in GitHub Desktop.
Save Whateverable/354af059eaea4accb732553e8ec17de0 to your computer and use it in GitHub Desktop.
bisectable6
use experimental :cached; multi fib(0 --> 0) { }; multi fib(1 --> 1) { }; multi fib(UInt:D $n) is cached { print "x"; fib($n-2) + fib($n-1) }; say fib(18); say fib(18)
Some old revs are not ancestors of the new rev.
git bisect cannot work properly in this case.
Maybe you mistook old and new revs?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment