bitcoin-sv / sol2scrypt

Solidity to sCrypt Transplier
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

Declare a variable w/o initializing it #154

Closed xhliu closed 2 years ago

xhliu commented 2 years ago
int a;
a = b + 1;

https://solidity-by-example.org/structs/

// initialize an empty struct and then update it
        Todo memory todo;
        todo.text = _text;