Changeset 4579 for trunk/manuals

Show
Ignore:
Timestamp:
11/07/08 16:12:44 (2 months ago)
Author:
pmoura
Message:

Added conditional compilation support, as found in some Prolog compilers, using the new directives if/1, elif/1, else/0, and endif/0.

Location:
trunk/manuals/refman/directives
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/manuals/refman/directives/elif1.html

    r4575 r4579  
    2626<pre>elif1(Goal)</pre> 
    2727<p> 
    28 Supports embedded conditionals when performing conditional compilation. 
     28Supports embedded conditionals when performing conditional compilation. The code following the directive is compiled if <code>Goal</code> is true. The goal is automatically term expanded. 
    2929</p> 
    3030 
  • trunk/manuals/refman/directives/if1.html

    r4575 r4579  
    2626<pre>if(Goal)</pre> 
    2727<p> 
    28 Starts conditional compilation. 
     28Starts conditional compilation. The code following the directive is compiled if <code>Goal</code> is true. The goal is automatically term expanded. 
    2929</p> 
    3030