mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	* Add AngelScript scriping language * Add AngelScript sample * Initial implementation of Angelscript * Update Angelscript tm_scope and ace_mode * Move Angelscript after ANTLR * Updated grammar list * Alphabetical sorting for Angelscript * Angelscript grammar license is unlicense * Add ActionScript samples * Added a heuristic for .as files * Whitelist sublime-angelscript license hash * Added heuristic test for Angelscript and Actionscript * Remove .acs from Angelscript file extensions
		
			
				
	
	
		
			14 lines
		
	
	
		
			215 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			215 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
| package mypackage
 | |
| {
 | |
| 	public class Hello
 | |
| 	{
 | |
| 		/* Let's say hello!
 | |
| 		 * This is just a test script for Linguist's Actionscript detection.
 | |
| 		 */
 | |
| 		public function sayHello():void
 | |
| 		{
 | |
| 			trace("Hello, world");
 | |
| 		}
 | |
| 	}
 | |
| }
 |