/*! @header @discussion This is an example of how to use a textblock element. This is also an example of how to use a textblock element. Spaces with pre and textblock on separate lines:
        @textblock
        if (a<3) {
                printf("a is @ less @than 3.\n");
        }
        @/textblock
        
Spaces with pre and textblock on the same line:
@textblock
        if (a<3) {
                printf("a is @ less @than 3.\n");
        }
        @/textblock
        
Tabs with pre and textblock on separate lines:
	@textblock
	if (a<3) {
		printf("a is @ less @than 3.\n");
	}
	@/textblock
	
Tabs with pre and textblock on the same line:
@textblock
	if (a<3) {
		printf("a is @ less @than 3.\n");
	}
	@/textblock
	
@textblock i<3 @/textblock For more information, reread this page. */