11 lines
152 B
Solidity
11 lines
152 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
contract Example {
|
|
function Example() {
|
|
// constructor
|
|
}
|
|
|
|
function ExampleFunction() {
|
|
// example function
|
|
}
|
|
} |