I have the following:
is_digit(X):-char_type(X,digit).
When I call it like this: is_digit(X).
I get the folloring results:
X='0';
X='1';
... ;
X='9'
I need to get those same results but without the quotes. Excuse me if it is a simple question but I just haven't been able to find a way around this. Thanks!