rustlings/exercises/functions/functions1.rs
Virgin Dev 03692cd53e fix: install into $home on windows for now
Stopgap measure so that people stop installing into System32 (since that's the default Powershell elevated prompt directory for some reason).
2023-06-16 13:07:58 +00:00

14 lines
199 B
Rust

// functions1.rs
//
// Execute `rustlings hint functions1` or use the `hint` watch subcommand for a
// hint.
fn call_me()-> String {
return String::from("Call")
}
fn main() {
call_me();
}