Variables

JBEE allows application developers to declare variables in code and make their value accessible through symbolic names in an expression. By default, no variables are bound.

Variables may have any name as long as it only consists of letters, underscores and numbers with the restriction that the name must not start with a number. For example, the following are examples for legal variable names:

  • hello
  • world1
  • _universe
  • HelloWorld_2