【Import】
├── Import.sol
└── Foo.solpragma solidity ^0.8.11;
struct Point {
uint x;
uint y;
}
error Unauthorized(address caller);
function add(uint x, uint y) pure returns (uint) {
return x + y;
}
contract Foo {
string public name = "Foo";
}Last updated