var/declare x;
25 lines later
call f(x); // ** Reader has no idea what x is ... even though compiler has **
if (....)
x = "world" // infer type as string - this is bad
var/declare x;
25 lines later
call f(x); // ** Reader has no idea what x is ... even though compiler has **
25 lines later
if (....)