node/test/fixtures/print-chars.js

12 lines
173 B
JavaScript
Raw Normal View History

common = require("../common");
assert = common.assert
var n = parseInt(process.argv[2]);
var s = "";
2010-03-18 05:00:17 +08:00
for (var i = 0; i < n; i++) {
s += 'c';
}
2010-03-18 05:00:17 +08:00
process.stdout.write(s);