mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-14 00:17:16 +00:00
15 lines
314 B
Rust
15 lines
314 B
Rust
// test1.rs
|
|
// Make me compile! Scroll down for hints :)
|
|
|
|
fn something() -> [f32; 120] {
|
|
???
|
|
}
|
|
|
|
fn something_else() -> String {
|
|
???
|
|
}
|
|
|
|
fn main() {
|
|
println!("This array is {} items long, and it should be 120", something().len());
|
|
println!("This function returns a string: {}", something_else());
|
|
}
|