Sign in
rust
/
rls
/
refs/heads/rustup
/
.
/
rls-analysis
/
test_data
/
hello
/
src
/
main.rs
blob: 0839ec4cc5ece84d5cf01ffde1408e2e7fc421ee [
file
] [
log
] [
blame
] [
edit
]
fn
print_hello
()
{
let
name
=
"world"
;
println
!(
"Hello, {}!"
,
name
);
}
fn
main
()
{
print_hello
();
}