mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-17 09:28:58 +02:00
8 lines
99 B
ObjectPascal
8 lines
99 B
ObjectPascal
const dirsep = '\';
|
|
|
|
begin
|
|
if dirsep = '/'
|
|
then writeln('bug!')
|
|
else writeln('ok');
|
|
end.
|