Welcome to mirror list, hosted at ThFree Co, Russian Federation.

print-chars.js « fixtures « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e350a025a547235e2e1b6cf83600dc41b36e854c (plain)
1
2
3
4
5
const assert = require('assert');

var n = parseInt(process.argv[2]);

process.stdout.write('c'.repeat(n));