2
0
mirror of https://github.com/blackjack4494/yt-dlc.git synced 2025-08-16 05:12:43 -06:00
blackjack4494_yt-dlc/test/swftests/StringCharCodeAt.as
2014-11-17 05:03:46 +01:00

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();
}
}
}