mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-03 16:15:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			206 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			206 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
// input: []
 | 
						|
// output: 9897
 | 
						|
 | 
						|
package {
 | 
						|
public class StringCharCodeAt {
 | 
						|
    public static function main():int{
 | 
						|
        var s:String = "abc";
 | 
						|
        return s.charCodeAt(1) * 100 + s.charCodeAt();
 | 
						|
    }
 | 
						|
}
 | 
						|
}
 |