Carlos Roque Code Hints, Examples and more

12Aug/112

Web Colors Previewer v2.0

 

Well, the old tool didn't have many features, the new one displays rows of colors with  different characteristics from the original. click on the image and enjoy!

Filed under: RandomStuff 2 Comments
11Aug/110

KPL Variables

KPL variables resemble PHP variables in the sense that they are loosely typed and don't have to be declared. For those new to programming, this means that you don't have to declare that the variable is an integer or a text string.

Naming

Variable names must start with an alphabetic character followed by any alpha-numeric combination, underscores are allowed but any other non alpha-numeric character is forbidden. These are some Examples of correct variable names:

  • myVar
  • MyVar
  • myVar123
  • myVar_123