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

@@ -750,6 +750,12 @@ Julia:
primary_extension: .jl
color: "#a270ba"
KRL:
lexer: Text only
type: programming
color: "#f5c800"
primary_extension: .krl
Kotlin:
type: programming
primary_extension: .kt

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