9 lines
177 B
Solidity
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;
|
|
}
|
|
}
|