Toggle navigation
Toggle navigation
This project
Loading...
Sign in
강동현
/
test12345
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
강동현
2021-03-26 12:41:13 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
be22732ded29d746a26e223c77ae4954a625fd2b
be22732d
0 parents
Implement basic echo program
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
echo.rs
echo.rs
0 → 100644
View file @
be22732
use
std
::
io
;
fn
main
()
{
loop
{
let
mut
input
=
String
::
new
();
io
::
stdin
()
.read_line
(
&
mut
input
);
print!
(
"{}"
,
input
);
}
}
Please
register
or
login
to post a comment