Comment on Wasp: WASM Programming LanguageparentComments−postalrat4yIs it one of these? fibonacci (it) - 1 + fibonacci (it) - 2 fibonacci (it - 1) + fibonacci (it - 2) fibonacci (it - 1 + fibonacci (it - 2))−marcosdumay4yOn any sane ML-style language, it would be this: (fibonacci it) - 1 + (fibonacci it) - 2 But I guess it isn't the case here, because that code doesn't make sense.
Comments
Is it one of these?
On any sane ML-style language, it would be this:
But I guess it isn't the case here, because that code doesn't make sense.