I've seen conditional compile directives with expressions related to the version of the compile, but I'm unable to locate them again.
How would I correctly write this in Free Pascal?
program do_stuff;
begin
{$IF VER > 2.4}
// Some code here
{$ENDIF}
end.
Thanks.