This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/share/CodeBlocks/lexers/lexer_batch.sample

24 lines
282 B
Plaintext

:: This is a simple batch file demonstrating the lexer's capabilities
@echo off
if %OS% == Windows_NT goto Windows-NT
if not %OS% == Windows_NT goto Other
:Windows-NT
echo This is Windows NT4/2000/XP/2003
goto end
:Other
echo This is Windows 95/98/ME
goto end
:end
pause