Versions Compared

Key

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

...

Info
titleHow the expression works

The lambda expression is everything inside the brackets. The #this variable holds the argument to the expression, which is initially starts at 11.

Code Block
xml
xml
<saf<s:property value="#fib =:[#this==0 ? 0 : #this==1 ? 1 : #fib(#this-2)+#fib(#this-1)], #fib(11)" />

...