Files
linguist/samples/KRL/helloworld.krl
2013-07-19 13:46:42 -06:00

16 lines
239 B
Plaintext

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");
}
}