The two syntax changes I would most like to see are: 1. Assume assignment means there's a value, unless specified: 2. Use of ? as a shortcut for an option type:
Put together you could write:
var abc: string?
abc = "testing"
Run
