~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

Viewing changes to src/sdk/resources/lexers/lexer_batch.sample

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
:: This is a simple batch file demonstrating the lexer's capabilities
 
2
 
 
3
@echo off
 
4
 
 
5
if %OS% == Windows_NT goto Windows-NT
 
6
 
 
7
if not %OS% == Windows_NT goto Other
 
8
 
 
9
:Windows-NT
 
10
 
 
11
echo This is Windows NT4/2000/XP/2003
 
12
 
 
13
goto end
 
14
 
 
15
:Other
 
16
 
 
17
echo This is Windows 95/98/ME
 
18
 
 
19
goto end
 
20
 
 
21
:end
 
22
 
 
23
pause