This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
inter-font/misc/tools/gen-num-pairs.js

10 lines
189 B
JavaScript

const chars = '0 1 2 3 4 5 6 7 8 9 A B C D E F a b c d e f'.split(' ')
for (let c1 of chars) {
let s = []
for (let c2 of chars) {
s.push(c1 + c2)
}
console.log(s.join(' '))
}