mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			202 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			202 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| package example
 | |
| 
 | |
| enhancement Hello : String {
 | |
| 
 | |
|   function toPerson() : Person {
 | |
|      var vals = this.split(",")
 | |
|      return new Person( vals[0], vals[1] as int, Relationship.valueOf( vals[2] ) ) )
 | |
|   }
 | |
| } |