---
primaryColor: steelblue
secondaryColor: '#e8e8e8'
textColor: black
shuffleQuestions: false
shuffleAnswers: true
locale: en
---
## What is the keyword for declaring a function?
- [ ] fun
- [ ] function
- [ ] func
- [x] fn
## What is the output of the following code?
```rust
fn main() {
println!("Hello World!")
println!("Hello");
}
```
- [ ] Hello World! \n
Hello
- [X] error