PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
5 lines
108 B
JavaScript
5 lines
108 B
JavaScript
const assert = require('assert');
|
|
|
|
var n = parseInt(process.argv[2]);
|
|
|
|
process.stdout.write('c'.repeat(n));
|