Local variables
let <VARIABLE>:TYPE; //explicit type annotation
let <VARIABLE>=<EXPRESSION>; //implicit type annotationmodule my_addrx::Variable
{
fun local_variables()
{
let b:u8;
let c=false;
let d=b"hello world";
let e:u64=10000;
let f:address = @my_addrx;
}
}let a;
let b=a+10; //ERRORLast updated