Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: fix syntax error

...

Code Block
languagejavascript
themeConfluence
ruleset a16x55 {
  meta {
    name "thermostat module"
    shares get_mode, get_temperature
  }
  global {
    get_mode = function() {
      ...
    }
    get_temperature = function(room) {
      ...
    }
}

You could call the get_temperature() function, supplying bedroom as the parameter with the following request:

...