raineorshine / solidity-repl

Ethereum Solidity REPL
ISC License
396 stars 33 forks source link

Add support for multiple statements in one submission. #14

Closed Romulus10 closed 6 years ago

Romulus10 commented 6 years ago

I was modifying your REPL core for use in another project and needed multiple statements to be executed in one submission (e.g. "uint a=1; uint b=1; a+b" returns "2") and wondered if you might like to integrate those changes with your repository.

raineorshine commented 6 years ago

Thank you!

However, I believe they already worked. I added a test to demonstrate this in the current version.

Romulus10 commented 6 years ago

That's what happens when I don't read test output. Thanks for pointing that out!