Variable Declaration
Value assignment
Global variables
contract test {
global myValue : number;
}Local variables
contract test {
public myMethod(){
local myVariable : string = "something";
}
}Last updated