This commit is contained in:
Vitor Santos Costa
2016-08-01 21:45:42 -05:00
72 changed files with 8053 additions and 54 deletions

View File

@@ -0,0 +1,13 @@
".source.prolog":
DCG:
prefix: "dcg"
body: "${1:clause} --> ${0:body}."
Fact:
prefix: "fact"
body: "${1:functor_name}(${2:argument})."
Rule:
prefix: "rule"
body: '''
${1:functor_name}(${2:argument}) :-
${0:%% body}
'''