mirror of
https://github.com/zkonduit/ezkl.git
synced 2026-04-25 03:01:17 -04:00
--------- Co-authored-by: Alexander Camuto <45801863+alexander-camuto@users.noreply.github.com> Co-authored-by: Alexander Camuto <alexander.camuto@st-hughs.ox.ac.uk>
13 lines
263 B
Solidity
13 lines
263 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity ^0.8.17;
|
|
|
|
contract TestReads {
|
|
|
|
uint[] public arr;
|
|
constructor(uint256[] memory _numbers) {
|
|
for(uint256 i = 0; i < _numbers.length; i++) {
|
|
arr.push(_numbers[i]);
|
|
}
|
|
}
|
|
}
|