lib(swi)


    This library is incomplete, and intended to ease the task of
    porting SWI-Prolog programs to ECLiPSe Prolog, or to add modules
    written in SWI-Prolog to applications written in ECLiPSe. 
    
    It reuses parts of the C-Prolog, Quintus and Iso compatibility
    libraries.
    
    The effect of the compatibility library is local to the module where
    it is loaded. For maximum compatibility, an SWI program should
    be wrapped in a separate module starting with a directive like
    
    :- module(mymodule, [], swi).
    
    In this case, Eclipse-specific language constructs will not be available.
    
    If the compatibility package is loaded into a normal Eclipse module, like
    
    :- module(mymixedmdule).
    :- use_module(library(swi)).
    
    then SWI and Eclipse language features can be used together. 
    However, ambiguities must be resolved explicitly and confusion may
    arise from the different meaning of quotes in Eclipse vs SWI-Prolog.
    

