node/test/fixtures/print-chars.js
cjihrig dd9aefde69
test: use const for all require() calls
PR-URL: https://github.com/nodejs/node/pull/10550
Reviewed-By: Rich Trott <rtrott@gmail.com>
2017-01-30 12:08:31 -05:00

5 lines
108 B
JavaScript

const assert = require('assert');
var n = parseInt(process.argv[2]);
process.stdout.write('c'.repeat(n));