ZenScript main repository
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.
1234567891011 |
- package stdlib;
-
- public final class Chars {
- private Chars() {}
- public static String times(char self, int number) {
- char[] temp1 = new char[number];
- for (int temp2 = 0; temp2 < temp1.length; temp2++)
- temp1[temp2] = self;
- return new String(temp1);
- }
- }
|