chapter14-code-4

PHOTO EMBED

Thu Mar 30 2023 11:19:26 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

contract ExampleContract {
	string public name;

	// if you use calldata, it won't compile
	constructor(string memory _name) {
		name = _name;
	}
}
content_copyCOPY