Contents:
else
Starts an else branch when performing conditional compilation. The code following this directive is compiled iff the goal in the matching if/1 directive is false.
:- if(current_prolog_flag(bounded, true)). :- initialization( logtalk::print_message(warning,app,bounded_arithmetic) ). :- else. :- initialization( logtalk::print_message(comment,app,unbounded_arithmetic) ). :- endif.
See also
elif/1, endif/0, if/1