hana-cli
Version:
HANA Developer Command Line Interface
15 lines (14 loc) • 637 B
JavaScript
// @ts-check
import * as base from '../utils/base.js'
export const command = 'matrix'
export const describe = base.bundle.getText("matrix")
export const builder = base.getBuilder({}, false, false)
export async function handler() {
const tools = await import('terminaltools')
try {
await tools.default.fun.Matrix.start([0,1,2,3,4,5,6,7,8,9,'日','ハ','ミ','ヒ','ー','ウ','シ','ナ','モ','ニ','サ',
'ワ','ツ','オ','リ','ア','ホ','テ','マ','ケ','メ','エ','カ','キ','ム','ユ','ラ','セ','ネ','ス','タ','ヌ','ヘ','ç','リ','ク'])
} catch (err) {
return console.error(err)
}
}