mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			239 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			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");
 | 
						|
  }
 | 
						|
}
 |