About Global Variables

Global variables can be defined to be shared throughout the whole Libraries. Their value can be initialized at the Library level and then accessed (read/write) from concepts.

See Also
Creating a Library

The syntax to use is the following:

Include "<LibName>";
...

<Global Variable type> >Global Variable Name [=<value>];
...

<Concepts definition>

Notes:
  • A library can include one or more than one library making the reuse of concepts easy.
  • Some global variables can be defined and shared throughout the whole library.