Source: commons.wikimedia.org

Solidity is a programming language for implementing smart contracts on various blockchain platforms, most notably, Ethereum. Solidity is licensed under GNU General Public License v3.0. Solidity was designed by Gavin Wood and developed by Christian Reitwiessner, Alex Beregszaszi, and several former Ethereum core contributors. Programs in Solidity run on Ethereum Virtual Machine or on compatible virtual machines. Wikipedia

Created Year: 2014

Wikidata: Q24909565

Hello World in Solidity

pragma solidity ^0.8.9;

contract HelloWorld {
    function render () public pure returns (string memory) {
        return 'Hello World';
    }
}

Free Solidity books, articles, documentation

Search on GitHub


Latest data update: 2025-03-31