This is an example of a text file that can be parsed by HResourceBuilder.
comments may be added as shown with // not /* like this */.

The important key words are _CHAR_ and _BEGIN_. Everything befor a _BEGIN_
is a comment, like this here. _CHAR_ must! be followed by an IDENTIFIER, no
comments allow here. An IDENTIFIER is the name used in your program. It is
used to verify the item and generate to code to load it.

Two files may be loaded by MAIN they are STATIC.TXT the default file for 
all your strings.  The directory will also be checked for STATIC.APD, in
case you forgot to add its contents here. IMPORTANT you should delete 
STATIC.APD if it is no longer valid.

Duplicate identifers are not allowed and the latter will replace the 
first.


BEGIN
CHAR	Hello   // a comment is allowed
Hello World
Hello Boys and Girls
M	I	C, see you real soon// no right padding, tabs as 0x9
K	E	Y,                  // comment too far line padded
A long,\t long time ago\nIn a galaxy...// escape sequences ok
Simon says /* this is not a comment */
of course / this is also not a comment
Lines can be \
spliced
Spliced Lines may \         //splices have no padding right of backslash
have imbedded comments
"this makes bad!" code. NOT!   //resource however is ok!
qoutes are also ok \"when\" slashed
Idenifiers are separated by an empty line
//
CHAR Rainbow
Red
Orange
Yellow
Green
Blue
Indigo
Violet

// multiple empty lines ok

CHAR Vegitables
Carrots
Tomatoes
Lettuce

