rs-basic/README.md

12 lines
456 B
Markdown
Raw Normal View History

2023-09-12 17:01:33 +02:00
# Rust basics
2024-01-12 14:57:50 +01:00
This project contains various smaller rust projects, often made by myself to
gain more understanding with a topic or dependency.
2023-09-12 17:01:33 +02:00
2024-01-12 14:57:50 +01:00
## Rust unsafe
2023-09-12 17:01:33 +02:00
2024-01-12 14:57:50 +01:00
Unsafe rust offers many possibilities otherwise locked from rust, which might
cause undefined behavior (or are dubbed unsafe for other reasons). Let's be
honest, they are hacks. But they can have fun uses and are sometimes interesting
to explore, if only to see how the underlying system works.