contract ExampleContract {
string immutable public name;
constructor(string memory _name) {
name = _name;
}
}
contract ExampleContract {
string immutable public name;
constructor(string memory _name) {
name = _name;
}
}