Mehmet Hakan Satman @jbytecode.bsky.social · Dec 5

The Julia code is somehow okay and the whole repo is open to developments

0 likes 1 replies

?

Replies

Diego Javier Zea · Dec 6

I am not sure that the Julia's Fibonacci implementation is optimal. Using Val is nice to showcase dispatch, but it hits compilation for every number, and it makes the code type unstable. Conversely, using Val should make the compiler memoize the result for each number. github.com/bddicken/lan...