mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
12 lines
178 B
ActionScript
12 lines
178 B
ActionScript
|
// input: []
|
||
|
// output: 2
|
||
|
|
||
|
package {
|
||
|
public class StringConversion {
|
||
|
public static function main():int{
|
||
|
var s:String = String(99);
|
||
|
return s.length;
|
||
|
}
|
||
|
}
|
||
|
}
|