3 lines
89 B
Prolog
3 lines
89 B
Prolog
:- use_module(library(clpfd)).
|
|
foo(N) :- (nonvar(N), number(N));(var(N), N in inf..sup).
|