2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/solidity
2018-07-21 10:35:40 +00:00

6 lines
263 B
Plaintext

# Solidity is a contract-oriented, high-level language for implementing smart contracts.
# It is designed to target the Ethereum Virtual Machine (EVM).
# To create a contract, declare which solidity version the source code is written for
pragma solidity ^0.4.0;