Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • input boolean A; 
  • output boolean A;
  • input output boolean A; // double direction (input and output))
  • input static boolean A; //static variable
  • boolean A; //local, without direction
  • input integer I=10; //the variable I is initialised
  • input integer I with '+' //the combine operator is '+'

 

 

Signal Declarations

Signals are extended from EventsYakindu events are interpreted as signals. A signal has a direction Direction and a Name.

Info
iconfalse
titleSignalDefinition:

{EventDefinition} (isInput?='input')? (isOutput?='output')? 'signal' name=ID ';';

 

4 views to implement signals:

...