Skip to content

Instantly share code, notes, and snippets.

@thesnapdragon
Last active December 24, 2015 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thesnapdragon/6823927 to your computer and use it in GitHub Desktop.
Save thesnapdragon/6823927 to your computer and use it in GitHub Desktop.
Sublime entry point snippet for Prolog language
<snippet>
<content><![CDATA[
main:-
findall(${2:ReturnValue}, ${1:function(ReturnValue)}, L), write(L), nl.
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>main</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.prolog</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment