1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-01-22 02:07:36 +01:00

12 lines
169 B
ActionScript
Raw Normal View History

2014-11-17 04:25:04 +01:00
// input: []
// output: 3
package {
public class StringBasics {
public static function main():int{
var s:String = "abc";
return s.length;
}
}
}