I write count the letters in a list,
ERROR: countvowels/2: Arguments are not sufficiently instantiated
I got this error" why is that?
this is the coding I used
countvowels([],0).
countvowels([H|T],Count1):-Count is Count1 + 1,countvowels(T,Count),Count1>1.