mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			245 B
		
	
	
	
		
			Puppet
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			245 B
		
	
	
	
		
			Puppet
		
	
	
	
	
	
class foo {
 | 
						|
  notify {
 | 
						|
    "foo": ;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
class bar {
 | 
						|
  notify {
 | 
						|
    "bar": ;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
node default {
 | 
						|
  stage {
 | 
						|
    "one": ;
 | 
						|
    "two": ;
 | 
						|
  }
 | 
						|
 | 
						|
  class {
 | 
						|
    "foo": stage => "one";
 | 
						|
    "bar": stage => "two";
 | 
						|
  }
 | 
						|
 | 
						|
  Stage["one"] -> Stage["two"]
 | 
						|
}
 |