You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
858 B

## doubtful
### Instructions
Write a function called `doubtful` that adds to every string passed to it a question mark (?).
You have to complete the signature the functions to make it fit the usage and you also have to modify the usage to be able to do what is expected.
- Restrictions:
- `doubtful` cannot return any value.
- And in the example of the usage you can only modify the argument of the function
### Expected
```rust
pub fn doubtful(s: /*give the correct type*/ ) {
}
```
### Usage
Here is a program to test your function
```rust
fn main() {
let mut s = String::from("Hello");
println!("Before changing the string: {}", s);
doubtful(/*add your code here*/);
println!("After changing the string: {}", s);
}
```
And its output
```console
$ cargo run
Before changing the string: Hello
After changing the string: Hello?
$
```