Skip to content

Instantly share code, notes, and snippets.

View khoonseng's full-sized avatar

Lim Khoon Seng khoonseng

View GitHub Profile
@khoonseng
khoonseng / remix programs...message_board.sol
Created April 29, 2026 01:29
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=undefined&optimize=undefined&runs=undefined&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract MessageBoard {
string public lastMessage;
address public lastSender;
uint public totalMessages;
function postMessage(string memory _message) public {