mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			169 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			169 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
// input: []
 | 
						|
// output: 3
 | 
						|
 | 
						|
package {
 | 
						|
public class StringBasics {
 | 
						|
    public static function main():int{
 | 
						|
        var s:String = "abc";
 | 
						|
        return s.length;
 | 
						|
    }
 | 
						|
}
 | 
						|
}
 |