DEV Community

Discussion on: Laravel inside Rust? I have a reason for that.

Collapse
 
danielhe4rt profile image
Daniel Reis

First actual challenge was migrating to a heavy typed language. Rust doesn't allow you to do lazy typing like PHP.

Also the immutability is a thing here. In PHP you can do whatever you want with the variables, in Rust, it must follow some patterns if you want to mutate it.

The Laravel come when I need a more specific way to bring Web/Console/Database opinionated development, since I know each part of the framework not only in the "end user" side, but some internals as well.