ghost
ghost copied to clipboard
Add `new` keyword to create new class instances
Instead of newing up class instances based off a method:
flight = Flight.new()
I think I'd like to explore how most other language new up instances through a dedicated new keyword:
flight = new Flight()
Reads easier when parsing code and is already intuitive for most developers coming in with past experience.