Page tree

Versions Compared

Key

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

...

Code Block
languagesct
titleSCTx CodeStyle
linenumberstrue
#import blub


scchart Test {

  input bool trigger
  input int array[10]
  
  output bool action0, action1
  
  int fun

  region first_region "Have fun":
  // State example
  initial state example_state
  go to example_state immediate 
    if  trigger trigger 
      && (trigger1
        || trigger2)
    do action0 = true
    ;  action1 = false
    ;  fun++
    label "Having fun"
  
  go to example_state immediate
    if trigger
    do action0 = true
    ;  action1 = false
    ;  fun--
    label "Having fun"

  // Region
  region second_region "Do nothing concurrently":

  initial state init;
}

...