기술 블로그
js 입출력 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let input = []
rl.on("line", function(line) {
if(!line) {
rl.close()
}
else {
input.push(line)
}
}).on("close", function() {
sol(input);
process.exit();
});
function sol(input){
console.log(input+"hello")
}
반응형
'프론트엔드' 카테고리의 다른 글
프론트엔드에서의 경로 유지 멀티파일 전송과 성능 비교에 관하여 (0) | 2024.08.26 |
---|---|
react-native android 14 정확한 알람 대응 (0) | 2024.01.13 |
[TIL] 에러코드 (0) | 2023.10.20 |
[TIL] 웹 브라우저 이해 (0) | 2023.10.17 |
[TIL] Docker GCP CI/CD (0) | 2023.10.15 |
Comments