aboutsummaryrefslogtreecommitdiff
path: root/atom_dcg.pl
diff options
context:
space:
mode:
Diffstat (limited to 'atom_dcg.pl')
-rw-r--r--atom_dcg.pl11
1 files changed, 0 insertions, 11 deletions
diff --git a/atom_dcg.pl b/atom_dcg.pl
deleted file mode 100644
index 74689d5..0000000
--- a/atom_dcg.pl
+++ /dev/null
@@ -1,11 +0,0 @@
-:- module(atom_dcg, [atom_phrase/2]).
-
-:- meta_predicate atom_phrase(2, ?).
-
-atom_phrase(G, A) :-
- ( var(A)
- -> phrase(G, C),
- atom_codes(A, C)
- ; atom_codes(A, C),
- phrase(G, C)
- ).