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.

Chars.java 279B

1234567891011
  1. package stdlib;
  2. public final class Chars {
  3. private Chars() {}
  4. public static String times(char self, int number) {
  5. char[] temp1 = new char[number];
  6. for (int temp2 = 0; temp2 < temp1.length; temp2++)
  7. temp1[temp2] = self;
  8. return new String(temp1);
  9. }
  10. }