// Number is still not a string.

let Hello:string;
Hello = 1337 //  ! error TS2322: Type '1337' is not assignable to type 'string'.
console.log(Hello);
