[fpc-pascal] How do you test for set membership?

Michael Fuchs freepascal at ypa-software.de
Sun Sep 5 15:50:27 CEST 2010


Frank Church schrieb:
>       if [dbgRemoteLinks] in dbgActiveOptions then
>         mmoURLPageContent.Lines.AddStrings(procList);

Try

 if dbgRemoteLinks in dbgActiveOptions then
    WriteLn('Yes');


htht
Michael



More information about the fpc-pascal mailing list