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
Show 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
1
+
use
std
::
io
;
2
+
3
+
fn
main
()
{
4
+
loop
{
5
+
let
mut
input
=
String
::
new
();
6
+
io
::
stdin
()
.read_line
(
&
mut
input
);
7
+
print!
(
"{}"
,
input
);
8
+
}
9
+
}
Please
register
or
login
to post a comment