#100daysofcode Day 19: Contrary to what I thought of as lazy. It seems auto types have a lot of benefits, some of which are:
- reduces errors made by type conversion
- improves performance (on most cases)
- its possible to commit to a type
auto w = new widget{}
auto w = widget{12, 34}