Difference between revisions of "Main Page"
From wiki.visual-prolog.com
|  (Remove Tutorials section) |  (Edit restrictions) | ||
| Line 1: | Line 1: | ||
| The Wiki is based on MediaWiki software (IIS+PHP+MySQL). | The Wiki is based on MediaWiki software (IIS+PHP+MySQL). | ||
Revision as of 07:43, 15 August 2007
The Wiki is based on MediaWiki software (IIS+PHP+MySQL).
Visual Prolog Token Coloring
The Wiki has a special Visual Prolog extension. If you write:
<vip>some Visual Prolog code</vip>
The code will be token colered according to Visual Prolog rules (more or less). For example:
<vip>predicates
     isMember : (Elem Value, Elem* List) determ.
     %@short Succeds is #Value is member of #List.
     %@end
 clauses
     isMember(V, [V|_L]) :- !.
     isMember(V, [_X|L]) :- isMember(V, L).</vip>
The result will look like this:
predicates isMember : (Elem Value, Elem* List) determ. %@short Succeds is #Value is member of #List. %@end clauses isMember(V, [V|_L]) :- !. isMember(V, [_X|L]) :- isMember(V, L).
Media Wiki Getting started
Consult the User's Guide for information on using the wiki software.

