oop-examples/rust/Instances.md
2020-05-04 19:36:23 +02:00

12 lines
246 B
Markdown

# Rust Example
## Language specific
- Rust doesn't use the 'new' keyword
- Classes in Rust require all attributes to be defined at all times, so you have
to define all the data on creation.
Relevant Files
- [main.rs](./classes/src/main.rs)