DEV Community

Discussion on: Cross Pollination: What have you learned from one language and applied to another?

Collapse
 
dbanty profile image
Dylan Anthony

For me, Rust made me think about using types for more correct code. In Python, I’ve started making classes for semantic values instead of using strings. Combined with a good IDE or a static checker like mypy ive caught several bugs that would have gone untouched.