Code Snippets
Markdown
Inline code has `back-ticks around` it.
```python
s = "hello"
print(s)
```
```rust
let s = "jello";
println!(s);
```
renders as
Inline code has back-ticks around it.
s = "Jello"
print(s)
#![allow(unused)] fn main() { let s = "jello"; println!("{}", s); }
Notes
You can even run the rust code in here by clicking the play button. Fancy that.