1#+begin_src cfengine3
2bundle agent __main__
3{
4  reports:
5    "This will be skipped on versions outside this inclusive range"
6      if => cf_version_between("3.15", "4");
7    "This will be skipped if version is within this inclusive range"
8      unless => cf_version_between("3.15", "4");
9}
10#+end_src
11###############################################################################
12#+begin_src example_output
13#@ ```
14#@ R: This will be skipped on versions outside this inclusive range
15#@ ```
16#+end_src
17