Larger and lower Case

Started by Frank Brübach, October 30, 2023, 04:37:28 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Frank Brübach

Capitalization and lower Case
DIM a,b,c AS LONG

Doesn't Work with oxygen
dim a,b,c as long

Is much better one
TYPE
FUNCTION
MAIN
PROCEDERE
SUB
...

Much more dont Like larger cases.
Little Thing I have noticed Last weeks and month.

Bye Frank

Charles Pegge

#1
The reason is:

#case capital

This makes symbol name lexing sensitive to fully capitalized names. It is required when using header files like gl.h which declares differnt names with the same spelling but different cases. Partial case-sensitivity is sufficient here  because all the Opengl constants are fully capitalized.