added KRL config and sample

This commit is contained in:
Phil Windley
2013-07-19 13:46:42 -06:00
parent 772a9a582c
commit 5f29bf3bb4
2 changed files with 20 additions and 0 deletions

View File

@@ -680,6 +680,11 @@ Kotlin:
- .ktm
- .kts
KRL:
type: programming
color: "#f5c800"
primary_extension: .krl
LLVM:
primary_extension: .ll

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