2024-08-23 17:06:50 +08:00

9 lines
177 B
Solidity

// SPDX-License-Identifier: Apache 2.0
pragma solidity 0.8.19;
contract TestSth {
function test(uint256 a, uint256 b) public view returns (uint256) {
return a / b;
}
}