Programming Concepts — Smart Contract
Smart contracts are self-executing contracts with terms directly written into code, running on blockchain networks like Ethereum.
pragma solidity ^0.8.0;
contract HelloWorld {
string public message = 'Hello, Blockchain!';
}