oop-examples/rust/Instances.md

12 lines
246 B
Markdown
Raw Normal View History

2020-04-01 15:29:10 +02:00
# Rust Example
## Language specific
- Rust doesn't use the 'new' keyword
2020-05-04 19:36:23 +02:00
- Classes in Rust require all attributes to be defined at all times, so you have
to define all the data on creation.
2020-04-01 15:29:10 +02:00
Relevant Files
2020-05-04 19:34:12 +02:00
- [main.rs](./classes/src/main.rs)