chapter16-code-1

PHOTO EMBED

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

Saved by @RareSkills

contract ERC20 {
	string public name;
	string public symbol;

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