1comment: this assertion will return "true", since "KeyC" is among the
2	 action authorizers and the conditions field will return "true"
3authorizer: "Key6"
4licensees: "KeyC"
5conditions: app_domain == "testing" && request == "test" &&
6		_VALUES == "false,maybe,probably,true" && _VALUES != "foo" &&
7		_ACTION_AUTHORIZERS ~= "(.*,)KeyE,.*" &&
8		@ _0 == 2^2/4 &&	# minor regexp testing here
9		_ACTION_AUTHORIZERS != "foo" &&
10	# now let's test precedence rules
11                $foo . bar == ($foo) . bar &&
12                $foo . bar != $(foo . bar) &&
13		$foo == $(foo) &&
14		$ ("fo" . "o") == foo &&
15		$ "fo" . "o" != $"foo" &&
16		-1 * 12 == -12 &&
17		12 * 1 - 1 != 0 &&
18		@(foo . bar) == 0 &&
19		$((("foo"))) == foo &&
20		@foo + 1 == @bar + 1 &&  	# 1 == 1
21		@foo == 0 &&
22		  variable == "yes" -> "true";
23
24	@foo / @foo == @foo -> "maybe";
25