[cleanup] Mark unused files

This commit is contained in:
pukkandan 2021-06-05 21:25:06 +05:30
parent cc52de4356
commit 9d83ad93d0
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
30 changed files with 5 additions and 1 deletions

View file

@ -1,11 +0,0 @@
// input: []
// output: 9897
package {
public class StringCharCodeAt {
public static function main():int{
var s:String = "abc";
return s.charCodeAt(1) * 100 + s.charCodeAt();
}
}
}