mirror of
https://github.com/zkonduit/ezkl.git
synced 2026-01-15 01:07:57 -05:00
13 lines
262 B
Solidity
13 lines
262 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity ^0.8.17;
|
|
|
|
contract TestReads {
|
|
int[] public arr;
|
|
|
|
constructor(int256[] memory _numbers) {
|
|
for (uint256 i = 0; i < _numbers.length; i++) {
|
|
arr.push(_numbers[i]);
|
|
}
|
|
}
|
|
}
|