Unison can't find existing function definition

For the Roman numerals exercise, I have some code — definitions are incomplete, but the types should be.

When Unison picks this up, it complains it can’t find fromCharlist in the namespace; but fromCharlist is part of base as base.Text.fromCharlist.

Any pointers to what I could be missing here?

Thanks

Hmm, what happens if you prefix fromCharList with Text.fromCharList in your function implementation? Is the UCM able to pick it up then?

I found my error :man_facepalming:

fromCharlist (wrong) is different from fromCharList (right)

1 Like