Toggle navigation
Toggle navigation
This project
Loading...
Sign in
장원석
/
oss-assignment2-1-A
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
장원석
2022-10-11 21:31:24 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
96007cdba6bbcac802896410316f2aa3f3f7a775
96007cdb
0 parents
first
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
main.js
main.js
0 → 100644
View file @
96007cd
1
+
const
readline
=
require
(
'readline'
).
createInterface
({
2
+
input
:
process
.
stdin
,
3
+
output
:
process
.
stdout
4
+
});
5
+
6
+
readline
.
question
(
''
,
name
=>
{
7
+
console
.
log
(
`
${
name
}
`
);
8
+
readline
.
close
();
9
+
});
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment