// SPDX-License-Identifier: MIT pragma solidity ^0.8.29; contract Birthday { event BirthdayMessage(string message); function celebrate() public { emit BirthdayMessage("Chúc mừng sinh nhật lần thứ 10 @ethereum"); } }
56,71K