Merge pull request #589 from kynetx/adding_krl

added KRL config and sample
This commit is contained in:
Ted Nyman
2013-11-04 21:09:36 -08:00
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
ruleset sample {
meta {
name "Hello World"
description <<
Hello world
>>
author "Phil Windley"
}
// just one rule
rule hello {
select when web pageview
notify("Hello world!", "Just a note to say hello");
}
}