credits static method

void credits(
  1. String s,
  2. String t,
  3. String u,
  4. String v,
)

s t u v

Implementation

static void credits(String s, String t, String u, String v) {
  s.write(inGray);
  " $t".write(inWhite);
  " $u".write(inGray);
  " $v".write(inWhite);
  print("");
  divider();
}