| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // SPDX-License-Identifier: MIT
- pragma solidity ^0.5.2;
- // comment block starts here
- // comment block continues
- //
- // comment block 2 starts here
- // comment block 2 continues
- contract Constructors is Ownable, Changeable {
- function Constructors(variable1)
- public
- Changeable(variable1)
- Ownable()
- onlyOwner
- {}
- constructor(
- variable1,
- variable2,
- variable3,
- variable4,
- variable5,
- variable6,
- variable7
- )
- public
- Changeable(
- variable1,
- variable2,
- variable3,
- variable4,
- variable5,
- variable6,
- variable7
- )
- Ownable()
- onlyOwner
- {}
- }
|