]> gitweb @ CieloNegro.org - youtube-dl.git/blob - test/swftests/StringCharCodeAt.as
[YoutubeDL] Do not override id, extractor and extractor_key in url_transparent
[youtube-dl.git] / test / swftests / StringCharCodeAt.as
1 // input: []
2 // output: 9897
3
4 package {
5 public class StringCharCodeAt {
6     public static function main():int{
7         var s:String = "abc";
8         return s.charCodeAt(1) * 100 + s.charCodeAt();
9     }
10 }
11 }