You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
169 B

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