1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-16 05:38:54 +02:00
comprehensive-rust/src/exercises/day-3/solutions-morning.md

18 lines
256 B
Markdown
Raw Normal View History

2022-12-21 16:36:30 +01:00
# Day 3 Morning Exercise
## Drawing A Simple GUI
2022-12-21 16:36:30 +01:00
([back to exercise](simple-gui.md))
```rust
{{#include simple-gui.rs:solution}}
2022-12-21 16:36:30 +01:00
```
## Points and Polygons
([back to exercise](points-polygons.md))
```rust
{{#include points-polygons.rs:solution}}
```