Skip to content

Instantly share code, notes, and snippets.

@gwenf
gwenf / Calculator.sol
Last active September 5, 2025 06:05
Ethereum Supple Chain Demo
pragma solidity ^0.5.1;
contract Calculator {
int public num;
constructor() public {
num = 1;
}
function getNum() view public returns(int) {