logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

StringConversion.as (178B)


  1. // input: []
  2. // output: 2
  3. package {
  4. public class StringConversion {
  5. public static function main():int{
  6. var s:String = String(99);
  7. return s.length;
  8. }
  9. }
  10. }