https://github.com/ztgx/solidity-dev
Deep Into Solidity
https://github.com/ztgx/solidity-dev
Last synced: about 1 year ago
JSON representation
Deep Into Solidity
- Host: GitHub
- URL: https://github.com/ztgx/solidity-dev
- Owner: zTgx
- License: gpl-3.0
- Created: 2020-04-28T06:24:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-08T09:08:03.000Z (about 6 years ago)
- Last Synced: 2025-03-03T03:24:52.007Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 2.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Deep Into Solidity
Learning Solidity's implementation.
## Table of Contents
- [Build and Install](#build-and-install)
- [Example](#example)
## Build and Install
[build && install](https://github.com/zTgx/solidity/blob/master/INSTALL_README.md)
## Example
A "Hello World" program in Solidity is of even less use than in other languages, but still:
```solidity
pragma solidity ^0.6.0;
contract HelloWorld {
function helloWorld() external pure returns (string memory) {
return "Hello, World!";
}
}
```