Login   Register  
PHP Classes
elePHPant
Icontem

File: readme.txt

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Muhammad Arfeen  >  BASIC Language Parser  >  readme.txt  >  Download  
File: readme.txt
Role: Documentation
Content type: text/plain
Description: User Guide
Class: BASIC Language Parser
Parse BASIC language statements
Author: By
Last change:
Date: 2012-05-05 06:22
Size: 337 bytes
 

Contents

Class file image Download
Syntax:
	
		IF <( ANY CONDITION YOU WANT )> THEN
			DO <ANY STRING WHICH YOU CAN PARSE>
		ELSE
			{ DO <ANY STRING WHICH YOU CAN PARSE> | IF <( ANY CONDITION YOU WANT )> }
		END
		
		
Example:

				IF (MY_AGE > 13)
					THEN
						DO AGECHECK
					ELSE
						IF (MY_AGE > 20)
							DO ANOTHERROUTINES
						END
				END