DEV Community

Discussion on: Basics of Solidity

Collapse
 
thorstenhirsch profile image
Thorsten Hirsch

Very nice, Saurabh. Will you write a follow-up with advanced Solidity topics like Libraries? Just one little clarification regarding this statement:

Supports Inheritance of contracts and runs on Ethereum Virtual Machine(EVM).

Actually the EVM doesn't run Solidity code. You compile Solidity code to bytecode, and that's what the EVM can run. That's why you sometimes see assembly blocks in Soldity - there you can write low-level bytecode directly.

Collapse
 
saurabh619 profile image
Saurabh Bomble

@thorstenhirsch Thanks for pointing that out and Sure, we'll discuss advanced topics in later blogs.