August 2018
Intermediate to advanced
404 pages
11h 19m
English
These steps are used to compile and deploy smart contracts:
pragma solidity ^0.4.21;contract HelloWorld { string textToPrint = "hello world"; function changeText(string _text) public { textToPrint = _text; } function printSomething() public view returns (string) { return textToPrint; }}
var contract = "pragma solidity ^0.4.21; contract HelloWorld { string textToPrint = "hello world"; function changeText(string _text) public { textToPrint = _text; } function printSomething() public view returns (string) { return textToPrint; } }";