Destiny Operator

Related: New Variable Declaration keyword. const, let, var ..... get ??.

TLDR:
It's just another syntax to implement the same behaviour.
get is same as const but is only evaluated when read in the same scope.

const numA = 1
get numB = numA + 4