mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-16 05:12:47 -06:00
92a0e2487c
Also, fix a couple examples to use := instead of the old datalog syntax. Signed-off-by: Torin Sandall <torinsandall@gmail.com>
7 lines
97 B
Rego
7 lines
97 B
Rego
package example
|
|
|
|
greeting = msg {
|
|
msg := concat("", ["Hello ", data.example.hostOS, "!"])
|
|
}
|
|
|