chapter28-code-1

PHOTO EMBED

Thu Mar 30 2023 11:43:55 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

contract ExampleContract {

	string immutable public name;

	constructor(string memory _name) {
		name = _name;
	}
}
content_copyCOPY