From c380df46c4e64d0d0385668170c5f89912e64892 Mon Sep 17 00:00:00 2001 From: WizardOfAus Date: Wed, 18 Jul 2018 16:46:54 +0100 Subject: [PATCH] Create Solidity Add skeleton for proposed language to be added --- sheets/Solidity | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sheets/Solidity diff --git a/sheets/Solidity b/sheets/Solidity new file mode 100644 index 0000000..b224374 --- /dev/null +++ b/sheets/Solidity @@ -0,0 +1,5 @@ +# 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;