4 lines
83 B
Prolog
4 lines
83 B
Prolog
|
|
numeric_string(String) :-
|
||
|
|
atom_string(Atom, String),
|
||
|
|
atom_number(Atom, _).
|