3 lines
94 B
Prolog
3 lines
94 B
Prolog
:- initialization(main).
|
|
main :- ( current_prolog_flag(X, X) -> write(true) ; write(false) ).
|